summaryrefslogtreecommitdiff
path: root/pcr/mimms
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2013-07-16 01:17:00 -0700
committerroot <root@rshg054.dnsready.net>2013-07-16 01:17:00 -0700
commit380530d02a5449fdef97b63b394a6743c3de0092 (patch)
tree26e82f5688786d0bbb3862287f4d11ec55727d87 /pcr/mimms
parent49111a438f3120ab595d1b118f56571083b7da35 (diff)
Tue Jul 16 01:16:20 PDT 2013
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
+}