aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMattias Andrée <maandree@kth.se>2016-11-16 23:54:06 +0100
committerMattias Andrée <maandree@kth.se>2016-11-16 23:54:06 +0100
commit305b3486069551094002b63390dfbdb006532e6f (patch)
treec53a55e59826627505f536ff8ad707e176853214
parentmissed to add libkeccak to deps (diff)
downloadfile2key-305b3486069551094002b63390dfbdb006532e6f.tar.gz
file2key-305b3486069551094002b63390dfbdb006532e6f.tar.bz2
file2key-305b3486069551094002b63390dfbdb006532e6f.tar.xz
remove dist
Signed-off-by: Mattias Andrée <maandree@kth.se>
-rw-r--r--dist/archlinux/stable/.gitignore6
-rw-r--r--dist/archlinux/stable/PKGBUILD26
2 files changed, 0 insertions, 32 deletions
diff --git a/dist/archlinux/stable/.gitignore b/dist/archlinux/stable/.gitignore
deleted file mode 100644
index eaabd63..0000000
--- a/dist/archlinux/stable/.gitignore
+++ /dev/null
@@ -1,6 +0,0 @@
-*
-!.git*
-*~
-!PKGBUILD
-!file2key.install
-
diff --git a/dist/archlinux/stable/PKGBUILD b/dist/archlinux/stable/PKGBUILD
deleted file mode 100644
index 3422a64..0000000
--- a/dist/archlinux/stable/PKGBUILD
+++ /dev/null
@@ -1,26 +0,0 @@
-# Maintainer: Mattias Andrée <`base64 -d`(bWFhbmRyZWUK)@member.fsf.org>
-
-pkgname=file2key
-pkgver=2
-pkgrel=1
-pkgdesc="A simple command that generates a key from a file and a passphrase"
-arch=(i686 x86_64)
-url="https://github.com/maandree/file2key"
-license=('GPL3')
-depends=(glibc libpassphrase libkeccak)
-makedepends=(make coreutils gcc glibc libpassphrase libkeccak)
-source=($url/archive/$pkgver.tar.gz)
-sha256sums=(aa8d50ade18a77a5f721d2c843e089abf5a6ee9aa163821c564db19e0de75ac8)
-
-
-build() {
- cd "$srcdir/$pkgname-$pkgver"
- make PREFIX=/usr
-}
-
-
-package() {
- cd "$srcdir/$pkgname-$pkgver"
- make PREFIX=/usr install DESTDIR="$pkgdir"
-}
-