diff options
author | Manuel Hüsers | 2016-06-22 19:41:42 +0200 |
---|---|---|
committer | Manuel Hüsers | 2016-06-22 19:41:42 +0200 |
commit | cf973255beedb68d6c42e48240a95c7e9b263a01 (patch) | |
tree | 1a07460ae82bc48d8115eed2b5a261c02756a5c5 /PKGBUILD | |
parent | 78b9daa6d635c657aeffe7b40fbc84165baa2925 (diff) | |
download | aur-cf973255beedb68d6c42e48240a95c7e9b263a01.tar.gz |
Package clean-up
Diffstat (limited to 'PKGBUILD')
-rw-r--r-- | PKGBUILD | 21 |
1 files changed, 11 insertions, 10 deletions
@@ -1,21 +1,22 @@ -# Maintainer: Guillermo Garcia <ahioros@NO-SPAM.gmail.com> +# Maintainer: Manuel Hüsers <manuel.huesers@uni-ol.de> # Contributor: Manuel Hüsers <manuel.huesers@uni-ol.de> # Contributor: Guillermo Garcia <ahioros@NO-SPAM.gmail.com> -pkgname="plymouth-theme-arch-logo" +pkgname=plymouth-theme-arch-logo pkgver=0.1 -pkgrel=3 -url="http://gnome-look.org/content/show.php/Arch-logo+plymouth?content=141697" -pkgdesc="Arch-logo is a remake of ubuntu-logo plymouth" +pkgrel=4 +pkgdesc='A remake of the ubuntu-logo Plymouth theme, based on the debian-logo theme, but featuring the Arch Linux logo.' arch=('any') +url='http://arch-stuff.org/content/show.php/Arch-logo+plymouth?content=141696' license=('GPL') depends=('plymouth') -source=("http://gnome-look.org/CONTENT/content-files/141697-Arch-logo-plymouth.tar.gz") +install="${pkgname}.install" +source=('http://arch-stuff.org/CONTENT/content-files/141696-Arch-logo-plymouth.tar.gz') sha256sums=('553ab3efd51abefc50c10b521c24183df9ef879d080a75c54fb1c1512fbc94e6') package() { - cd $srcdir/arch-logo - mkdir -p $pkgdir/usr/share/plymouth/themes/arch-logo - install -Dm644 * $pkgdir/usr/share/plymouth/themes/arch-logo - install -Dm644 ../arch-logo.png $pkgdir/usr/share/plymouth/themes/arch-logo.png + cd "${srcdir}/arch-logo" + rm -fv *~ + mkdir -p "${pkgdir}/usr/share/plymouth/themes/arch-logo" + install -Dvm644 * "${pkgdir}/usr/share/plymouth/themes/arch-logo" } |