summaryrefslogtreecommitdiff
path: root/core/traceroute/PKGBUILD
diff options
context:
space:
mode:
authorNicolás Reynolds <fauno@kiwwwi.com.ar>2012-06-27 11:00:34 -0300
committerNicolás Reynolds <fauno@kiwwwi.com.ar>2012-06-27 11:00:34 -0300
commit6fa19b4570c3cef91cf336bbefd6b9583e89ecce (patch)
tree62facaa87cc6fd640437cc18226ca853496a4a02 /core/traceroute/PKGBUILD
parent57fc26a638bd3856b660dd8839999d5bab9bfeac (diff)
parent5aee7ab49f65d6fee1182bfcacf92192ad36c4af (diff)
Merge branch 'master' of ssh://vparabola/home/parabola/abslibre-pre-mips64el
Conflicts: community/moreutils/PKGBUILD core/iputils/PKGBUILD libre/texlive-bin-libre/PKGBUILD testing/openldap/PKGBUILD
Diffstat (limited to 'core/traceroute/PKGBUILD')
-rw-r--r--core/traceroute/PKGBUILD23
1 files changed, 23 insertions, 0 deletions
diff --git a/core/traceroute/PKGBUILD b/core/traceroute/PKGBUILD
new file mode 100644
index 000000000..cb8c6351e
--- /dev/null
+++ b/core/traceroute/PKGBUILD
@@ -0,0 +1,23 @@
+# $Id: PKGBUILD 162362 2012-06-25 20:10:12Z stephane $
+# Maintainer: Stéphane Gaudreault <stephane@archlinux.org>
+
+pkgname=traceroute
+pkgver=2.0.18
+pkgrel=1
+pkgdesc="Tracks the route taken by packets over an IP network"
+arch=('i686' 'x86_64')
+url="http://traceroute.sourceforge.net/"
+license=('GPL2')
+depends=('glibc')
+source=(http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.gz)
+sha1sums=('6bdccfd12f93b89aea53728b3c365db5a4362b6d')
+
+build() {
+ cd "${srcdir}/${pkgname}-${pkgver}"
+ make
+}
+
+package() {
+ cd "${srcdir}/${pkgname}-${pkgver}"
+ make prefix=/usr DESTDIR="${pkgdir}" install
+}