Initial PKGBUILD status as of 28.11.2014

This commit is contained in:
Jaroslav Lichtblau 2014-11-28 20:17:14 +01:00
commit 293b97b375
2 changed files with 33 additions and 0 deletions

14
.SRCINFO Normal file
View file

@ -0,0 +1,14 @@
pkgbase = debian-gdm-themes
pkgdesc = Themes for the GNOME Display Manager
pkgver = 0.6.1
pkgrel = 1
url = http://packages.debian.org/sid/gdm-themes
arch = i686
arch = x86_64
license = GPL2
depends = gdm
source = http://old-releases.ubuntu.com/ubuntu/pool/universe/g/gdm-themes/gdm-themes_0.6.1.tar.gz
md5sums = 111f67620355c34f4005fdd3dc76bf1d
pkgname = debian-gdm-themes

19
PKGBUILD Normal file
View file

@ -0,0 +1,19 @@
# Contributor: Jaroslav Lichtblau <dragonlord@aur.archlinux.org>
# Contributor: simo91 <simo91.linux@gmail.com>
pkgname=debian-gdm-themes
pkgver=0.6.1
pkgrel=1
pkgdesc="Themes for the GNOME Display Manager"
arch=('i686' 'x86_64')
url="http://packages.debian.org/sid/gdm-themes"
license=('GPL2')
depends=('gdm')
source=(http://old-releases.ubuntu.com/ubuntu/pool/universe/g/gdm-themes/gdm-themes_${pkgver}.tar.gz)
md5sums=('111f67620355c34f4005fdd3dc76bf1d')
package() {
cd ${srcdir}/gdm-themes-${pkgver}
install -d ${pkgdir}/usr/share/gdm/themes
mv */ ${pkgdir}/usr/share/gdm/themes
}