summarylogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.SRCINFO15
-rw-r--r--ChangeLog4
-rw-r--r--PKGBUILD22
3 files changed, 41 insertions, 0 deletions
diff --git a/.SRCINFO b/.SRCINFO
new file mode 100644
index 000000000000..8a4a6337c80b
--- /dev/null
+++ b/.SRCINFO
@@ -0,0 +1,15 @@
+pkgbase = eternallands-sound
+ pkgdesc = Sound effects files for Eternal Lands
+ pkgver = 1.9.1
+ pkgrel = 1
+ url = http://www.eternal-lands.com/
+ arch = i686
+ arch = x86_64
+ license = custom:eternallands
+ makedepends = unzip
+ depends = eternallands>=1.9.1
+ source = http://www.eternal-lands.com/sound/EL_sound_191.zip
+ md5sums = 6547ad41d2e49f0217b0a28f0b3f6756
+
+pkgname = eternallands-sound
+
diff --git a/ChangeLog b/ChangeLog
new file mode 100644
index 000000000000..aadd1bf132a3
--- /dev/null
+++ b/ChangeLog
@@ -0,0 +1,4 @@
+2010-02-27 Angelo "Encelo" Theodorou <encelo@users.sourceforge.net>
+
+ * PKGBUILD :
+ Source and description updated
diff --git a/PKGBUILD b/PKGBUILD
new file mode 100644
index 000000000000..6356b0f9d67d
--- /dev/null
+++ b/PKGBUILD
@@ -0,0 +1,22 @@
+# Contributor: Angelo Theodorou <encelo@users.sourceforge.net>
+
+pkgname=eternallands-sound
+pkgver=1.9.1
+pkgrel=1
+pkgdesc="Sound effects files for Eternal Lands"
+url="http://www.eternal-lands.com/"
+depends=('eternallands>=1.9.1')
+makedepends=('unzip')
+license=('custom:eternallands')
+arch=('i686' 'x86_64')
+source=('http://www.eternal-lands.com/sound/EL_sound_191.zip')
+md5sums=('6547ad41d2e49f0217b0a28f0b3f6756')
+
+build()
+{
+ cd $srcdir
+
+ # Install sound effects files
+ mkdir -p $pkgdir/usr/share/eternallands
+ cp -R sound $pkgdir/usr/share/eternallands/
+}