diff options
Diffstat (limited to 'community')
32 files changed, 86 insertions, 3 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/fzf/checksums b/community/fzf/checksums index 53111193..17a321d9 100644 --- a/community/fzf/checksums +++ b/community/fzf/checksums @@ -1 +1 @@ -fe6a7d07bdf999324a4f90fa97a4d2e8416c89bc92f19c9848c1cbcf365b59dc 0.20.0.tar.gz +89870f9f9396f41adc3609d466caab7556d831a1ad726cc6132a880febfd0eec 0.21.0.tar.gz diff --git a/community/fzf/sources b/community/fzf/sources index 840672f8..d2629422 100644 --- a/community/fzf/sources +++ b/community/fzf/sources @@ -1 +1 @@ -https://github.com/junegunn/fzf/archive/0.20.0.tar.gz +https://github.com/junegunn/fzf/archive/0.21.0.tar.gz diff --git a/community/fzf/version b/community/fzf/version index 7506cf6e..351346bd 100644 --- a/community/fzf/version +++ b/community/fzf/version @@ -1 +1 @@ -0.20.0 1 +0.21.0 1 diff --git a/community/lf/build b/community/lf/build new file mode 100755 index 00000000..47cba07b --- /dev/null +++ b/community/lf/build @@ -0,0 +1,4 @@ +#!/bin/sh -e + +go build +install -Dm755 lf "$1/usr/bin/lf" diff --git a/community/lf/checksums b/community/lf/checksums new file mode 100644 index 00000000..5493d0b4 --- /dev/null +++ b/community/lf/checksums @@ -0,0 +1 @@ +fe99ed9785fbdc606835139c0c52c854b32b1f1449ba83567a115b21d2e882f4 r13.tar.gz diff --git a/community/lf/depends b/community/lf/depends new file mode 100644 index 00000000..6ba6990b --- /dev/null +++ b/community/lf/depends @@ -0,0 +1 @@ +go make
\ No newline at end of file diff --git a/community/lf/sources b/community/lf/sources new file mode 100644 index 00000000..64116a65 --- /dev/null +++ b/community/lf/sources @@ -0,0 +1 @@ +https://github.com/gokcehan/lf/archive/r13.tar.gz diff --git a/community/lf/version b/community/lf/version new file mode 100644 index 00000000..be6c2bd7 --- /dev/null +++ b/community/lf/version @@ -0,0 +1 @@ +13 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 |