new pkg: xorg-xsetroot -> 1.1.1

This commit is contained in:
Drake Justice 2014-06-28 16:20:11 -04:00
parent 0a3601c1a2
commit e2dc0eaa02

27
xorg-xsetroot/PKGBUILD Normal file
View File

@ -0,0 +1,27 @@
# Maintainer: Drake Justice <djustice@chakraos.org>
pkgname=xorg-xsetroot
pkgver=1.1.1
pkgrel=1
pkgdesc="Classic X utility to set your root window background to a given pattern or color"
arch=('x86_64')
url="http://xorg.freedesktop.org/"
license=('custom')
depends=('libxmu' 'libx11' 'libxcursor')
makedepends=('xorg-util-macros' 'xbitmaps')
groups=('xorg-apps' 'xorg')
source=(http://xorg.freedesktop.org/archive/individual/app/xsetroot-${pkgver}.tar.bz2)
sha256sums=('ba215daaa78c415fce11b9e58c365d03bb602eaa5ea916578d76861a468cc3d9')
build() {
cd "${srcdir}/xsetroot-${pkgver}"
./configure --prefix=/usr
make
}
package() {
cd "${srcdir}/xsetroot-${pkgver}"
make DESTDIR="${pkgdir}" install
install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/COPYING"
}