blob: 037cbd033b81ab3a83b9a10144ca412dafc2130e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# Description: community maintained plugins for pidgin
# URL: https://bitbucket.org/rekkanoryo/purple-plugin-pack
# Maintainer: Erich Eckner, crux at eckner dot net
# Depends on: pidgin
name=purple-plugin-pack
version=2.8.0
release=1
source=("https://dl.bintray.com/pidgin/releases/${name}-${version}.tar.xz")
build() {
cd ${name}-${version}
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"
}
|