diff options
author | Linden Krouse | 2017-11-18 03:20:09 -0500 |
---|---|---|
committer | Linden Krouse | 2017-11-18 03:20:09 -0500 |
commit | 5ff8e3d3335966265907456d2cab298637e785dc (patch) | |
tree | 829586e2a4404a6a7331de878502cfe199464c94 | |
download | aur-5ff8e3d3335966265907456d2cab298637e785dc.tar.gz |
Initial commit (Woo first aur package)
-rw-r--r-- | .SRCINFO | 14 | ||||
-rw-r--r-- | PKGBUILD | 20 |
2 files changed, 34 insertions, 0 deletions
diff --git a/.SRCINFO b/.SRCINFO new file mode 100644 index 000000000000..4609958bf859 --- /dev/null +++ b/.SRCINFO @@ -0,0 +1,14 @@ +pkgbase = splits + pkgdesc = A cli tool that splits files into n peices requiring r of them to reconstruct the original + pkgver = 0.1.0 + pkgrel = 1 + url = https://github.com/lindenk/splits + arch = any + license = GPLv3 + depends = python + depends = python-simple-crypt + source = https://github.com/Lindenk/splits/archive/0.1.0.tar.gz + md5sums = 5752421a98afab21367c526f38080d3e + +pkgname = splits + diff --git a/PKGBUILD b/PKGBUILD new file mode 100644 index 000000000000..8d5d73600ddc --- /dev/null +++ b/PKGBUILD @@ -0,0 +1,20 @@ +# Maintainer: Lindenk <ztaticnull@gmail.com> + +pkgname=splits +pkgver=0.1.0 +pkgrel=1 +pkgdesc="A cli tool that splits files into n peices requiring r of them to reconstruct the original" +arch=('any') +url="https://github.com/lindenk/splits" +license=('GPLv3') +depends=('python' 'python-simple-crypt') +source=("https://github.com/Lindenk/$pkgname/archive/$pkgver.tar.gz") +md5sums=('5752421a98afab21367c526f38080d3e') + + +package() { + cd "$pkgname-$pkgver" + + mkdir -p "$pkgdir/usr/bin" + install -D -m755 ./splits.py "$pkgdir/usr/bin/$pkgname" +}
\ No newline at end of file |