summaryrefslogtreecommitdiff
path: root/pcr/mimms
diff options
context:
space:
mode:
authorAlon Ivtsan <alonivtsan@lavabit.com>2013-07-16 07:15:45 +0300
committerAlon Ivtsan <alonivtsan@lavabit.com>2013-07-16 07:15:45 +0300
commit7140c2f9c297a55a5f90aeb430d6f74ad2b9b1fc (patch)
treecf9b28980da4fb19965de5dee7c3fafc8866f338 /pcr/mimms
parent2697e6d80067efc6077f05cffbf263ea9e2c3ce3 (diff)
Adding mimms PKGBUILD
Diffstat (limited to 'pcr/mimms')
-rw-r--r--pcr/mimms/PKGBUILD30
1 files changed, 30 insertions, 0 deletions
diff --git a/pcr/mimms/PKGBUILD b/pcr/mimms/PKGBUILD
new file mode 100644
index 000000000..3697c1a3b
--- /dev/null
+++ b/pcr/mimms/PKGBUILD
@@ -0,0 +1,30 @@
+# Maintainer (Arch): Jaroslav Lichtblau <dragonlord@aur.archlinux.org>
+# Maintainer (Parabola): Alon Ivtsan <alonivtsan@lavabit.com>
+# taken from https://aur.archlinux.org/packages/mimms/
+
+pkgname=mimms
+pkgver=3.2.1
+pkgrel=2
+pkgdesc="Download streams using the MMS protocol and save them to your
+computer"
+arch=('any')
+url="http://savannah.nongnu.org/projects/mimms/"
+license=('GPL3')
+depends=('libmms' 'python2')
+source=(http://download.savannah.gnu.org/releases/$pkgname/$pkgname-$pkgver.tar.bz2)
+md5sums=('ec629d8899551b4789ba15c17402c36f')
+
+build() {
+ cd ${srcdir}/$pkgname-$pkgver
+
+#Python2 fix
+ sed -i "s/python/python2/g" Makefile
+
+ make
+}
+
+package() {
+ cd ${srcdir}/$pkgname-$pkgver
+
+ make DESTDIR=${pkgdir} install
+}