diff options
Diffstat (limited to 'community/webfs/PKGBUILD')
-rw-r--r-- | community/webfs/PKGBUILD | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/community/webfs/PKGBUILD b/community/webfs/PKGBUILD new file mode 100644 index 000000000..580b9053d --- /dev/null +++ b/community/webfs/PKGBUILD @@ -0,0 +1,39 @@ +# $Id: PKGBUILD 92107 2013-05-31 15:10:32Z foutrelis $ +# Maintainer: Kyle Keen <keenerd@gmail.com> +# Contributor: Roman Kyrylych <Roman.Kyrylych@gmail.com> +# Contributor: Mark Rosenstand <mark@archlinux.org> +# Contributor: Daniel J Griffiths <ghost1227@archlinux.us> +# Contributor: Chris Brannon <chris@the-brannons.com> + +pkgname=webfs +pkgver=1.21 +pkgrel=10 +pkgdesc="Simple and instant http server for mostly static content." +arch=(i686 x86_64) +url="http://linux.bytesex.org/misc/webfs.html" +license=("GPL") +depends=('mime-types' 'openssl') +backup=('etc/conf.d/webfsd') +source=(http://dl.bytesex.org/releases/webfs/webfs-${pkgver}.tar.gz + webfsd.conf + webfs.patch + webfsd.service) +md5sums=('6dc125fe160479404147e7bbfc781dbc' + 'b2c1ab041a82acd8391b06dc38d986be' + '7294edcec2589df04bb775270d56536e' + 'e1202dd915cba1a02e0016aa3a516b4a') + +build() { + cd "$srcdir/$pkgname-$pkgver" + + patch -i "$srcdir/webfs.patch" + make +} + +package() { + cd "$srcdir/$pkgname-$pkgver" + + make prefix=/usr DESTDIR="$pkgdir" install + install -Dm644 "$srcdir/webfsd.conf" "$pkgdir/etc/conf.d/webfsd" + install -Dm755 "$srcdir/webfsd.service" "$pkgdir/usr/lib/systemd/system/webfsd.service" +} |