summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorJaroslav Lichtblau2014-11-28 20:17:14 +0100
committerJaroslav Lichtblau2014-11-28 20:17:14 +0100
commit2599e7407239c955379d42c777c9dac4edaf77a9 (patch)
treefbca54ef80e9b6167c7a2710b1b77e11f9a12070
downloadaur-2599e7407239c955379d42c777c9dac4edaf77a9.tar.gz
Initial PKGBUILD status as of 28.11.2014
-rw-r--r--.SRCINFO12
-rw-r--r--PKGBUILD20
2 files changed, 32 insertions, 0 deletions
diff --git a/.SRCINFO b/.SRCINFO
new file mode 100644
index 000000000000..ec68b97e38d2
--- /dev/null
+++ b/.SRCINFO
@@ -0,0 +1,12 @@
+pkgbase = drascula-audio-flac
+ pkgdesc = Lossless music addon for Drascula
+ pkgver = 2.0
+ pkgrel = 1
+ url = http://scummvm.sourceforge.net/
+ arch = any
+ license = custom
+ source = http://downloads.sourceforge.net/scummvm/drascula-audio-flac-2.0.zip
+ md5sums = ca13eba7d0d1441631bd4c42a5714e32
+
+pkgname = drascula-audio-flac
+
diff --git a/PKGBUILD b/PKGBUILD
new file mode 100644
index 000000000000..23e450755a49
--- /dev/null
+++ b/PKGBUILD
@@ -0,0 +1,20 @@
+# Maintainer: Jaroslav Lichtblau <dragonlord@aur.archlinux.org>
+# Contributor: rabyte <rabyte__gmail>
+
+pkgname=drascula-audio-flac
+pkgver=2.0
+pkgrel=1
+pkgdesc="Lossless music addon for Drascula"
+arch=('any')
+url="http://scummvm.sourceforge.net/"
+license=('custom')
+source=(http://downloads.sourceforge.net/scummvm/$pkgname-$pkgver.zip)
+md5sums=('ca13eba7d0d1441631bd4c42a5714e32')
+
+package() {
+ cd "${srcdir}"
+
+ install -d "${pkgdir}"/usr/share/drascula/
+ install -m644 audio/*.flac "${pkgdir}"/usr/share/drascula/
+ install -D -m644 readme.txt "${pkgdir}"/usr/share/licenses/$pkgname/LICENSE
+}