summaryrefslogtreecommitdiffstats
path: root/dircproxy
diff options
context:
space:
mode:
authorThibaut Horel <thibaut.horel@gmail.com>2012-02-20 00:47:14 -0800
committerThibaut Horel <thibaut.horel@gmail.com>2012-02-20 00:47:14 -0800
commiteeb3e3d3fc6c1203a5e521758af00287dc5e3153 (patch)
treef3a2e19f539e7e9976e746fa0e1e6f929d1454af /dircproxy
parent559fcbf60bbd9128630d529550153dde75765349 (diff)
downloadarchlinux-eeb3e3d3fc6c1203a5e521758af00287dc5e3153.tar.gz
Add dircproxy PKGBUILD
Diffstat (limited to 'dircproxy')
-rw-r--r--dircproxy/PKGBUILD25
1 files changed, 25 insertions, 0 deletions
diff --git a/dircproxy/PKGBUILD b/dircproxy/PKGBUILD
new file mode 100644
index 0000000..ac02be0
--- /dev/null
+++ b/dircproxy/PKGBUILD
@@ -0,0 +1,25 @@
+# Maintainer: Thibaut Horel <thibaut dot horel at gmail dot com>
+pkgname=dircproxy
+pkgver=1.2.0_RC1
+pkgrel=1
+pkgdesc="An IRC proxy server (bouncer)"
+arch=('i686' 'x86_64')
+url="http://code.google.com/p/dircproxy/downloads/list"
+license=('GPL2')
+source=(http://dircproxy.googlecode.com/files/$pkgname-${pkgver//_/-}.tar.gz)
+sha1sums=('7dc4b3aa2e10222f74e280de69c41f571335a96b')
+
+build() {
+ cd "$srcdir/$pkgname-${pkgver//_/-}"
+ ./configure --prefix=/usr
+ make
+}
+
+package() {
+ cd "$srcdir/$pkgname-${pkgver//_/-}"
+ make DESTDIR="$pkgdir/" install
+ install -d $pkgdir/usr/share/doc/$pkgname
+ install -m644 INSTALL NEWS README FAQ ChangeLog AUTHORS $pkgdir/usr/share/doc/$pkgname
+}
+
+# vim:set ts=2 sw=2 et: