Initial commit

This commit is contained in:
Abhinav Baid 2017-03-29 19:52:22 +05:30
parent 19557551fe
commit ab5544691a
2 changed files with 30 additions and 0 deletions

22
package_creators/PKGBUILD Normal file
View File

@ -0,0 +1,22 @@
pkgname=ccextractor
pkgver=0.85
pkgrel=1
pkgdesc="A closed captions and teletext subtitles extractor for video streams."
arch=('i686' 'x86_64')
url="http://www.ccextractor.org"
license=('GPL')
depends=('gcc-libs' 'tesseract')
source=(
$pkgname-$pkgver.tar.gz
)
build() {
cd "$srcdir/$pkgname-$pkgver"
./configure --prefix="$pkgdir/usr/local" --CC=gcc
make -j4
}
package() {
cd "$srcdir/$pkgname-$pkgver"
make install
}

8
package_creators/arch.sh Executable file
View File

@ -0,0 +1,8 @@
#!/bin/sh
./tarball.sh
makepkg -g >> PKGBUILD
makepkg -sic
rm ./*.tar.gz
rm ./*.pkg.tar.xz
sed -i '$ d' PKGBUILD