summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorSammysHP2017-04-30 19:54:00 +0200
committerSammysHP2017-04-30 19:54:00 +0200
commitd95bfa1a4779341c7f82530a117a228828d0ce0f (patch)
treec66cd419a21e082694412a6e991b4cdb086bad78
downloadaur-d95bfa1a4779341c7f82530a117a228828d0ce0f.tar.gz
Initial commit
-rw-r--r--.SRCINFO16
-rw-r--r--.gitignore6
-rw-r--r--PKGBUILD25
3 files changed, 47 insertions, 0 deletions
diff --git a/.SRCINFO b/.SRCINFO
new file mode 100644
index 000000000000..ff30ec0b3777
--- /dev/null
+++ b/.SRCINFO
@@ -0,0 +1,16 @@
+# Generated by mksrcinfo v8
+# Sun Apr 30 17:53:55 UTC 2017
+pkgbase = free42-skins
+ pkgdesc = Skins for the free42 emulator
+ pkgver = 20170501
+ pkgrel = 1
+ url = http://thomasokken.com/free42/skins/
+ arch = any
+ license = GPL
+ depends = free42
+ noextract = free42-skins-20170501.zip
+ source = free42-skins-20170501.zip::http://thomasokken.com/free42/skins/desktop-skins.zip
+ md5sums = e79ea13014cec98c67a24fb92796e3d3
+
+pkgname = free42-skins
+
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 000000000000..c7825821f640
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,6 @@
+/pkg/
+/src/
+*.tar.xz
+*.tar.gz
+*.tgz
+*.zip
diff --git a/PKGBUILD b/PKGBUILD
new file mode 100644
index 000000000000..437a92bcc540
--- /dev/null
+++ b/PKGBUILD
@@ -0,0 +1,25 @@
+# Maintainer: Sven Karsten Greiner <sven@sammyshp.de>
+
+pkgname=free42-skins
+pkgver=20170501
+pkgrel=1
+pkgdesc='Skins for the free42 emulator'
+arch=('any')
+url='http://thomasokken.com/free42/skins/'
+license=('GPL')
+depends=('free42')
+_archivename="free42-skins-$pkgver.zip"
+source=("$_archivename::http://thomasokken.com/free42/skins/desktop-skins.zip")
+md5sums=('e79ea13014cec98c67a24fb92796e3d3')
+noextract=("$_archivename")
+
+package() {
+ install -dm755 "$pkgdir/usr/share/free42/skins"
+ cd "$pkgdir/usr/share/free42/skins"
+
+ # Ehrling42sl and Standard are included in the free42 package as default skins
+ bsdtar -xf "$srcdir/$_archivename" --include '*.gif' --include '*.layout' --exclude 'Ehrling42sl.*' --exclude 'Standard.*'
+
+ chmod 644 *.gif *.layout
+ chown root:root *.gif *.layout
+}