aboutsummaryrefslogtreecommitdiff
path: root/community
diff options
context:
space:
mode:
authorCem Keylan <cem@ckyln.com>2020-03-11 20:51:22 +0300
committerCem Keylan <cem@ckyln.com>2020-03-11 20:51:22 +0300
commit2e6fe916b8f9298d3c2927e50419248989325a1e (patch)
treeda7ff4c4edf2992903bf96be9bfd7c50cddc6b6c /community
parent16c097315b1c6eb028a92d151ddbc99a43f208af (diff)
downloadrepository-2e6fe916b8f9298d3c2927e50419248989325a1e.tar.gz
mpd/depends/tools: add to community
Diffstat (limited to 'community')
-rwxr-xr-xcommunity/boost/build5
-rw-r--r--community/boost/checksums1
-rw-r--r--community/boost/sources1
-rw-r--r--community/boost/version1
-rwxr-xr-xcommunity/libmpdclient/build12
-rw-r--r--community/libmpdclient/checksums1
-rw-r--r--community/libmpdclient/depends2
-rw-r--r--community/libmpdclient/sources1
-rw-r--r--community/libmpdclient/version1
-rwxr-xr-xcommunity/mpc/build10
-rw-r--r--community/mpc/checksums1
-rw-r--r--community/mpc/depends3
-rw-r--r--community/mpc/sources1
-rw-r--r--community/mpc/version1
-rwxr-xr-xcommunity/mpd/build12
-rw-r--r--community/mpd/checksums1
-rw-r--r--community/mpd/depends2
-rw-r--r--community/mpd/sources1
-rw-r--r--community/mpd/version1
-rwxr-xr-xcommunity/vimpc/build10
-rw-r--r--community/vimpc/checksums1
-rw-r--r--community/vimpc/depends4
-rw-r--r--community/vimpc/sources1
-rw-r--r--community/vimpc/version1
24 files changed, 75 insertions, 0 deletions
diff --git a/community/boost/build b/community/boost/build
new file mode 100755
index 00000000..16d829bd
--- /dev/null
+++ b/community/boost/build
@@ -0,0 +1,5 @@
+#!/bin/sh -e
+
+./bootstrap.sh --prefix="$1/usr"
+./b2 stage threading=multi link=static
+./b2 install threading=multi link=static
diff --git a/community/boost/checksums b/community/boost/checksums
new file mode 100644
index 00000000..6a7c7bf6
--- /dev/null
+++ b/community/boost/checksums
@@ -0,0 +1 @@
+59c9b274bc451cf91a9ba1dd2c7fdcaf5d60b1b3aa83f2c9fa143417cc660722 boost_1_72_0.tar.bz2
diff --git a/community/boost/sources b/community/boost/sources
new file mode 100644
index 00000000..62b63ed3
--- /dev/null
+++ b/community/boost/sources
@@ -0,0 +1 @@
+https://dl.bintray.com/boostorg/release/1.72.0/source/boost_1_72_0.tar.bz2
diff --git a/community/boost/version b/community/boost/version
new file mode 100644
index 00000000..7900068f
--- /dev/null
+++ b/community/boost/version
@@ -0,0 +1 @@
+1.72.0 1
diff --git a/community/libmpdclient/build b/community/libmpdclient/build
new file mode 100755
index 00000000..fd5a0757
--- /dev/null
+++ b/community/libmpdclient/build
@@ -0,0 +1,12 @@
+#!/bin/sh -e
+
+export DESTDIR="$1"
+
+meson \
+ --prefix=/usr \
+ --sysconfdir=/etc \
+ --mandir=/usr/share/man \
+ . output
+
+ninja -C output
+ninja -C output install
diff --git a/community/libmpdclient/checksums b/community/libmpdclient/checksums
new file mode 100644
index 00000000..aaa0449e
--- /dev/null
+++ b/community/libmpdclient/checksums
@@ -0,0 +1 @@
+4cb01e1f567e0169aca94875fb6e1200e7f5ce35b63a4df768ec1591fb1081fa libmpdclient-2.18.tar.xz
diff --git a/community/libmpdclient/depends b/community/libmpdclient/depends
new file mode 100644
index 00000000..e3f9397e
--- /dev/null
+++ b/community/libmpdclient/depends
@@ -0,0 +1,2 @@
+meson make
+mpd
diff --git a/community/libmpdclient/sources b/community/libmpdclient/sources
new file mode 100644
index 00000000..8a836d28
--- /dev/null
+++ b/community/libmpdclient/sources
@@ -0,0 +1 @@
+https://www.musicpd.org/download/libmpdclient/2/libmpdclient-2.18.tar.xz
diff --git a/community/libmpdclient/version b/community/libmpdclient/version
new file mode 100644
index 00000000..4fde9393
--- /dev/null
+++ b/community/libmpdclient/version
@@ -0,0 +1 @@
+2.18 1
diff --git a/community/mpc/build b/community/mpc/build
new file mode 100755
index 00000000..64ee0e20
--- /dev/null
+++ b/community/mpc/build
@@ -0,0 +1,10 @@
+#!/bin/sh -e
+
+export DESTDIR="$1"
+
+meson \
+ --prefix=/usr \
+ . output
+
+ninja -C output
+ninja -C output install
diff --git a/community/mpc/checksums b/community/mpc/checksums
new file mode 100644
index 00000000..8d942307
--- /dev/null
+++ b/community/mpc/checksums
@@ -0,0 +1 @@
+4f40ccbe18f5095437283cfc525a97815e983cbfd3a29e48ff610fa4f1bf1296 mpc-0.33.tar.xz
diff --git a/community/mpc/depends b/community/mpc/depends
new file mode 100644
index 00000000..990e9522
--- /dev/null
+++ b/community/mpc/depends
@@ -0,0 +1,3 @@
+libmpdclient
+meson make
+mpd
diff --git a/community/mpc/sources b/community/mpc/sources
new file mode 100644
index 00000000..d671b704
--- /dev/null
+++ b/community/mpc/sources
@@ -0,0 +1 @@
+https://www.musicpd.org/download/mpc/0/mpc-0.33.tar.xz
diff --git a/community/mpc/version b/community/mpc/version
new file mode 100644
index 00000000..e38a26a9
--- /dev/null
+++ b/community/mpc/version
@@ -0,0 +1 @@
+0.33 1
diff --git a/community/mpd/build b/community/mpd/build
new file mode 100755
index 00000000..3f03d986
--- /dev/null
+++ b/community/mpd/build
@@ -0,0 +1,12 @@
+#!/bin/sh -e
+
+export DESTDIR="$1"
+
+meson \
+ --prefix=/usr \
+ --sysconfdir=/etc \
+ --localstatedir=/var \
+ . output
+
+ninja -C output
+ninja -C output install
diff --git a/community/mpd/checksums b/community/mpd/checksums
new file mode 100644
index 00000000..152af065
--- /dev/null
+++ b/community/mpd/checksums
@@ -0,0 +1 @@
+422ef0a996d961f3ebc6856395f3a855b45fa0059910e878fb98281007e510e1 mpd-0.21.20.tar.xz
diff --git a/community/mpd/depends b/community/mpd/depends
new file mode 100644
index 00000000..5276d551
--- /dev/null
+++ b/community/mpd/depends
@@ -0,0 +1,2 @@
+boost make
+meson make
diff --git a/community/mpd/sources b/community/mpd/sources
new file mode 100644
index 00000000..106371af
--- /dev/null
+++ b/community/mpd/sources
@@ -0,0 +1 @@
+https://www.musicpd.org/download/mpd/0.21/mpd-0.21.20.tar.xz
diff --git a/community/mpd/version b/community/mpd/version
new file mode 100644
index 00000000..07fbbcd7
--- /dev/null
+++ b/community/mpd/version
@@ -0,0 +1 @@
+0.21.20 1
diff --git a/community/vimpc/build b/community/vimpc/build
new file mode 100755
index 00000000..1ba8e135
--- /dev/null
+++ b/community/vimpc/build
@@ -0,0 +1,10 @@
+#!/bin/sh -e
+
+autoreconf -i
+
+./configure \
+ --prefix=/usr \
+ --enable-taglib=no
+
+make
+make DESTDIR="$1" install
diff --git a/community/vimpc/checksums b/community/vimpc/checksums
new file mode 100644
index 00000000..def9f9f9
--- /dev/null
+++ b/community/vimpc/checksums
@@ -0,0 +1 @@
+caa772f984e35b1c2fbe0349bc9068fc00c17bcfcc0c596f818fa894cac035ce v0.09.2.tar.gz
diff --git a/community/vimpc/depends b/community/vimpc/depends
new file mode 100644
index 00000000..1027a3eb
--- /dev/null
+++ b/community/vimpc/depends
@@ -0,0 +1,4 @@
+automake make
+libmpdclient
+ncurses
+pcre
diff --git a/community/vimpc/sources b/community/vimpc/sources
new file mode 100644
index 00000000..464ffe49
--- /dev/null
+++ b/community/vimpc/sources
@@ -0,0 +1 @@
+https://github.com/boysetsfrog/vimpc/archive/v0.09.2.tar.gz
diff --git a/community/vimpc/version b/community/vimpc/version
new file mode 100644
index 00000000..84fd0b73
--- /dev/null
+++ b/community/vimpc/version
@@ -0,0 +1 @@
+0.09.2 1