diff options
Diffstat (limited to 'community/hsetroot/PKGBUILD')
-rw-r--r-- | community/hsetroot/PKGBUILD | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/community/hsetroot/PKGBUILD b/community/hsetroot/PKGBUILD new file mode 100644 index 000000000..37f14ea83 --- /dev/null +++ b/community/hsetroot/PKGBUILD @@ -0,0 +1,26 @@ +# Maintainer: Lukas Fleischer <archlinux at cryptocrack dot de> +# Contributor: SmackleFunky <smacklefunky@optusnet.com.au> +# Contributor: Slash <demodevil5[at]yahoo[dot]com> + +pkgname=hsetroot +pkgver=1.0.2 +pkgrel=1 +pkgdesc='A tool which allows you to compose wallpapers for X.' +url='http://www.thegraveyard.org/hsetroot.php' +license=('GPL') +depends=('imlib2' 'xorg-server') +arch=('i686' 'x86_64') +source=("http://www.thegraveyard.org/files/${pkgname}-${pkgver}.tar.gz") +md5sums=('f599770a6411dcfe216c37b280fad9bc') + +build() { + cd "${srcdir}/${pkgname}-${pkgver}" + + ./configure --prefix=/usr + make +} + +package() { + cd "${srcdir}/${pkgname}-${pkgver}" + make DESTDIR="${pkgdir}" install +} |