summaryrefslogtreecommitdiff
path: root/community/elfkickers/PKGBUILD
diff options
context:
space:
mode:
Diffstat (limited to 'community/elfkickers/PKGBUILD')
-rw-r--r--community/elfkickers/PKGBUILD24
1 files changed, 24 insertions, 0 deletions
diff --git a/community/elfkickers/PKGBUILD b/community/elfkickers/PKGBUILD
new file mode 100644
index 000000000..a084b36d6
--- /dev/null
+++ b/community/elfkickers/PKGBUILD
@@ -0,0 +1,24 @@
+# $Id: PKGBUILD 101261 2013-11-21 10:29:03Z arodseth $
+# Maintainer: Alexander Rødseth <rodseth@gmail.com>
+# Contributor: Mikko Sysikaski <mikko.sysikaski@gmail.com>
+pkgname=elfkickers
+pkgver=3.0a
+pkgrel=1
+pkgdesc='Collection of ELF utilities (includes sstrip)'
+arch=('x86_64' 'i686')
+license=('GPL')
+source=("http://www.muppetlabs.com/~breadbox/pub/software/ELFkickers-$pkgver.tar.gz")
+url='http://www.muppetlabs.com/~breadbox/software/elfkickers.html'
+sha256sums=('c3429957142169c21ff550e0c06bbb0d48bb76437c4ccbc67164bf56b6e9774f')
+
+build() {
+ make -C "ELFkickers-$pkgver"
+}
+
+package() {
+ install -d "$pkgdir/usr/bin"
+ install -d "$pkgdir/usr/share/man/man1"
+ make -C "ELFkickers-$pkgver" prefix="$pkgdir/usr" install
+}
+
+# vim:set ts=2 sw=2 et: