diff options
author | Erich Eckner <git@eckner.net> | 2020-09-26 19:35:41 +0200 |
---|---|---|
committer | Erich Eckner <git@eckner.net> | 2020-09-26 19:35:41 +0200 |
commit | 441bddace04049a415329f4c0b9aab33a3a9af8f (patch) | |
tree | cd53ebf2f5dd1db487258d556e38ed42e490fcaf /manualPorts/purple-plugin-pack/Pkgfile | |
parent | ef53d302d414863198f23827f482fb449dc161b1 (diff) | |
download | crux-ports-441bddace04049a415329f4c0b9aab33a3a9af8f.tar.xz |
purple-plugin-pack: 2.7.0 -> 2.8.0
Diffstat (limited to 'manualPorts/purple-plugin-pack/Pkgfile')
-rw-r--r-- | manualPorts/purple-plugin-pack/Pkgfile | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/manualPorts/purple-plugin-pack/Pkgfile b/manualPorts/purple-plugin-pack/Pkgfile index ae3138e..037cbd0 100644 --- a/manualPorts/purple-plugin-pack/Pkgfile +++ b/manualPorts/purple-plugin-pack/Pkgfile @@ -4,17 +4,19 @@ # Depends on: pidgin name=purple-plugin-pack -version=2.7.0 +version=2.8.0 release=1 -source=("https://bitbucket.org/rekkanoryo/${name}/downloads/${name}-${version}.tar.bz2") +source=("https://dl.bintray.com/pidgin/releases/${name}-${version}.tar.xz") build() { cd ${name}-${version} - PYTHON=/usr/bin/python2 \ - ./configure --prefix=/usr --disable-nls - make - make DESTDIR=$PKG install + export PYTHON=/usr/bin/python2 + meson setup --prefix=/usr --libexecdir lib --sbindir bin --buildtype plain --auto-features enabled --wrap-mode nodownload -D b_lto=true -D b_pie=true build + meson compile -C build + meson test -C build + DESTDIR=$PKG meson install -C build + rm -rf --one-file-system "$PKG/usr/share/locale" } |