diff options
author | Francesco Colista <fcolista@alpinelinux.org> | 2017-08-25 10:31:20 +0000 |
---|---|---|
committer | Francesco Colista <fcolista@alpinelinux.org> | 2017-08-25 10:31:42 +0000 |
commit | 63f45cd8b7236b6c97d7ebdebbfcc729d9e1a427 (patch) | |
tree | 85b8b06351ed41f850ccccf86dc3506d0f509a1a /community/tilda/APKBUILD | |
parent | b75bc83b379490fd61b289d355a9a9d455ec9a60 (diff) | |
download | aports-63f45cd8b7236b6c97d7ebdebbfcc729d9e1a427.tar.bz2 aports-63f45cd8b7236b6c97d7ebdebbfcc729d9e1a427.tar.xz |
community/tilda: updated APKBUILD, removed maintainer mode, rpath
Diffstat (limited to 'community/tilda/APKBUILD')
-rw-r--r-- | community/tilda/APKBUILD | 22 |
1 files changed, 16 insertions, 6 deletions
diff --git a/community/tilda/APKBUILD b/community/tilda/APKBUILD index d4200bb2f2..cb6257052a 100644 --- a/community/tilda/APKBUILD +++ b/community/tilda/APKBUILD @@ -2,29 +2,39 @@ # Maintainer: Francesco Colista <fcolista@alpinelinux.org> pkgname=tilda pkgver=1.3.3 -pkgrel=0 +pkgrel=1 pkgdesc="A Gtk based drop down terminal for Linux and Unix" url="https://github.com/lanoxx/tilda" arch="all" license="GPL" -makedepends="automake autoconf libtool confuse-dev vte3-dev" +makedepends="automake autoconf libtool + confuse-dev vte3-dev libx11-dev libxml2-utils" subpackages="$pkgname-lang" source="https://github.com/lanoxx/$pkgname/archive/$pkgname-$pkgver.tar.gz" builddir="$srcdir"/$pkgname-$pkgname-$pkgver -check() { +prepare() { cd "$builddir" - make check + NOCONFIGURE=1 ./autogen.sh + default_prepare } build() { cd "$builddir" - ./autogen.sh ./configure \ - --prefix=/usr + --prefix=/usr \ + --disable-maintainer-mode \ + --enable-lto \ + --enable-vte-2.91 \ + --disable-rpath make } +check() { + cd "$builddir" + make check +} + package() { cd "$builddir" make DESTDIR="${pkgdir}" install |