diff options
Diffstat (limited to 'extra/xorg-xsetroot/PKGBUILD')
-rw-r--r-- | extra/xorg-xsetroot/PKGBUILD | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/extra/xorg-xsetroot/PKGBUILD b/extra/xorg-xsetroot/PKGBUILD index 3758d9c6a..dd812c0f4 100644 --- a/extra/xorg-xsetroot/PKGBUILD +++ b/extra/xorg-xsetroot/PKGBUILD @@ -1,11 +1,11 @@ -# $Id: PKGBUILD 113846 2011-03-10 16:01:58Z jgc $ +# $Id: PKGBUILD 151001 2012-02-24 13:02:20Z allan $ # Maintainer: Jan de Groot <jgc@archlinux.org> pkgname=xorg-xsetroot pkgver=1.1.0 -pkgrel=2 +pkgrel=3 pkgdesc="Classic X utility to set your root window background to a given pattern or color" -arch=(i686 x86_64 'mips64el') +arch=('i686' 'x86_64' 'mips64el') url="http://xorg.freedesktop.org/" license=('custom') depends=('libxmu' 'libx11' 'libxcursor') @@ -18,7 +18,10 @@ build() { cd "${srcdir}/xsetroot-${pkgver}" ./configure --prefix=/usr make +} + +package() { + cd "${srcdir}/xsetroot-${pkgver}" make DESTDIR="${pkgdir}" install - install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}" - install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/" + install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/COPYING" } |