Last active
December 20, 2015 21:39
-
-
Save jasonwryan/6199462 to your computer and use it in GitHub Desktop.
imlibsetroot PKGBUILD for 1.6
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Maintainer: Alex Puterbaugh <[email protected]> | |
pkgname=imlibsetroot | |
pkgver=1.6 | |
pkgrel=1 | |
pkgdesc="A root background (wallpaper) setter with support for image scaling and xinerama." | |
arch=('x86_64' 'i686') | |
url="http://robotmonkeys.net/2012/12/30/imlibsetroot-1-6/" | |
license=('GPL') | |
depends=('xproto' 'libx11' 'imlib2' 'libxinerama') | |
source=("http://robotmonkeys.net/wp-content/uploads/2012/12/imlibsetroot-16.tar.gz") | |
md5sums=('f81efaea5ac6c476d98a98899ecb9f46') | |
build() { | |
cd "$srcdir/$pkgname-$pkgver" | |
./build | |
} | |
package() { | |
cd "$srcdir/$pkgname-$pkgver" | |
install -D -m755 -T ./imlibsetroot ${pkgdir}/usr/bin/imlibsetroot | |
install -D -m755 -T ./gnome_imlibsetroot ${pkgdir}/usr/bin/gnome_imlibsetroot | |
} | |
# vim:set ts=2 sw=2 et: |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment