Package clean-up

This commit is contained in:
Manuel Hüsers 2016-06-22 19:41:42 +02:00
parent 78b9daa6d6
commit cf973255be
3 changed files with 30 additions and 14 deletions

View file

@ -1,12 +1,15 @@
# Generated by mksrcinfo v8
# Wed Jun 22 17:41:42 UTC 2016
pkgbase = plymouth-theme-arch-logo pkgbase = plymouth-theme-arch-logo
pkgdesc = Arch-logo is a remake of ubuntu-logo plymouth pkgdesc = A remake of the ubuntu-logo Plymouth theme, based on the debian-logo theme, but featuring the Arch Linux logo.
pkgver = 0.1 pkgver = 0.1
pkgrel = 3 pkgrel = 4
url = http://gnome-look.org/content/show.php/Arch-logo+plymouth?content=141697 url = http://arch-stuff.org/content/show.php/Arch-logo+plymouth?content=141696
install = plymouth-theme-arch-logo.install
arch = any arch = any
license = GPL license = GPL
depends = plymouth depends = plymouth
source = http://gnome-look.org/CONTENT/content-files/141697-Arch-logo-plymouth.tar.gz source = http://arch-stuff.org/CONTENT/content-files/141696-Arch-logo-plymouth.tar.gz
sha256sums = 553ab3efd51abefc50c10b521c24183df9ef879d080a75c54fb1c1512fbc94e6 sha256sums = 553ab3efd51abefc50c10b521c24183df9ef879d080a75c54fb1c1512fbc94e6
pkgname = plymouth-theme-arch-logo pkgname = plymouth-theme-arch-logo

View file

@ -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: Manuel Hüsers <manuel.huesers@uni-ol.de>
# Contributor: Guillermo Garcia <ahioros@NO-SPAM.gmail.com> # Contributor: Guillermo Garcia <ahioros@NO-SPAM.gmail.com>
pkgname="plymouth-theme-arch-logo" pkgname=plymouth-theme-arch-logo
pkgver=0.1 pkgver=0.1
pkgrel=3 pkgrel=4
url="http://gnome-look.org/content/show.php/Arch-logo+plymouth?content=141697" pkgdesc='A remake of the ubuntu-logo Plymouth theme, based on the debian-logo theme, but featuring the Arch Linux logo.'
pkgdesc="Arch-logo is a remake of ubuntu-logo plymouth"
arch=('any') arch=('any')
url='http://arch-stuff.org/content/show.php/Arch-logo+plymouth?content=141696'
license=('GPL') license=('GPL')
depends=('plymouth') 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') sha256sums=('553ab3efd51abefc50c10b521c24183df9ef879d080a75c54fb1c1512fbc94e6')
package() { package() {
cd $srcdir/arch-logo cd "${srcdir}/arch-logo"
mkdir -p $pkgdir/usr/share/plymouth/themes/arch-logo rm -fv *~
install -Dm644 * $pkgdir/usr/share/plymouth/themes/arch-logo mkdir -p "${pkgdir}/usr/share/plymouth/themes/arch-logo"
install -Dm644 ../arch-logo.png $pkgdir/usr/share/plymouth/themes/arch-logo.png install -Dvm644 * "${pkgdir}/usr/share/plymouth/themes/arch-logo"
} }

View file

@ -0,0 +1,12 @@
post_install() {
cat <<EOF
==> To activate the theme, run:
==> plymouth-set-default-theme -R arch-logo
EOF
}
post_upgrade() {
post_install $1
}