diff options
Diffstat (limited to 'extra/libxkbui/PKGBUILD')
-rw-r--r-- | extra/libxkbui/PKGBUILD | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/extra/libxkbui/PKGBUILD b/extra/libxkbui/PKGBUILD index 6ed803c75..eac86cf42 100644 --- a/extra/libxkbui/PKGBUILD +++ b/extra/libxkbui/PKGBUILD @@ -1,29 +1,28 @@ -# $Id: PKGBUILD 151385 2012-02-25 23:56:14Z pierre $ +# $Id: PKGBUILD 197101 2013-10-21 18:50:28Z andyrtr $ # Maintainer: Jan de Groot <jgc@archlinux.org> pkgname=libxkbui pkgver=1.0.2 -pkgrel=4.1 +pkgrel=5 pkgdesc="X11 keyboard UI presentation library" arch=('i686' 'x86_64' 'mips64el') url="http://xorg.freedesktop.org/" license=('custom') depends=('libxt' 'libxkbfile') makedepends=('pkgconfig') -options=('!libtool') source=("${url}/releases/individual/lib/${pkgname}-${pkgver}.tar.bz2" 'LICENSE') md5sums=('1143e456f7429e18e88f2eadb2f2b6b1' 'd1efaa1271fc028cd5bec33f836ee9ef') build() { - cd "${srcdir}/${pkgname}-${pkgver}" + cd ${pkgname}-${pkgver} ./configure --prefix=/usr make } package() { - cd "${srcdir}/${pkgname}-${pkgver}" + cd ${pkgname}-${pkgver} make DESTDIR="${pkgdir}" install install -D -m644 ../LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" } |