diff options
author | masutu | 2015-06-24 00:32:22 +0200 |
---|---|---|
committer | masutu | 2015-06-24 00:32:22 +0200 |
commit | 7b68ac9790cec9b4c44b2437c776b5c801c7664b (patch) | |
tree | 297bfef26dafcdac401fb9e378af713737f49872 | |
download | aur-7b68ac9790cec9b4c44b2437c776b5c801c7664b.tar.gz |
Initial import
-rw-r--r-- | .SRCINFO | 14 | ||||
-rw-r--r-- | PKGBUILD | 31 |
2 files changed, 45 insertions, 0 deletions
diff --git a/.SRCINFO b/.SRCINFO new file mode 100644 index 00000000000..aef2c33c2ca --- /dev/null +++ b/.SRCINFO @@ -0,0 +1,14 @@ +pkgbase = movgrab + pkgdesc = A command-line movie downloader. + pkgver = 1.2.1 + pkgrel = 1 + url = http://sites.google.com/site/columscode/home/movgrab + arch = i686 + arch = x86_64 + license = GPL3 + depends = openssl + source = http://sites.google.com/site/columscode/files/movgrab-1.2.1.tar.gz + md5sums = db162d6963b9753d6235f23419d08a5a + +pkgname = movgrab + diff --git a/PKGBUILD b/PKGBUILD new file mode 100644 index 00000000000..65fa3109fce --- /dev/null +++ b/PKGBUILD @@ -0,0 +1,31 @@ +# Maintainer: masutu <masutu dot arch at gmail dot com> +# Contributor: archtux <antonio.arias99999@gmail.com> +pkgname=movgrab +pkgver=1.2.1 +pkgrel=1 +pkgdesc="A command-line movie downloader." +arch=('i686' 'x86_64') +url="http://sites.google.com/site/columscode/home/movgrab" +license=('GPL3') +depends=('openssl') +source=(http://sites.google.com/site/columscode/files/$pkgname-$pkgver.tar.gz) +md5sums=('db162d6963b9753d6235f23419d08a5a') + +build() { + cd $srcdir/$pkgname-$pkgver + make clean + ./configure --prefix=/usr \ + --enable-ssl \ + --enable-largefiles + make +} + +package() { + cd $srcdir/$pkgname-$pkgver + install -Dm755 movgrab $pkgdir/usr/bin/movgrab + install -Dm644 README $pkgdir/usr/share/$pkgname/README + mkdir -p $pkgdir/usr/share/doc/$pkgname + install -m644 Docs/* $pkgdir/usr/share/doc/$pkgname +} + +# vim:set ts=2 sw=2 et: |