summaryrefslogtreecommitdiff
path: root/community/fswebcam/PKGBUILD
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2013-07-17 00:58:52 -0700
committerroot <root@rshg054.dnsready.net>2013-07-17 00:58:52 -0700
commitdee9f17b595ea903a982d31d1124b302bb17e2ff (patch)
tree295fdab78e28e1952fbc13ce824d57c88ede4e3b /community/fswebcam/PKGBUILD
parent380530d02a5449fdef97b63b394a6743c3de0092 (diff)
Wed Jul 17 00:58:51 PDT 2013
Diffstat (limited to 'community/fswebcam/PKGBUILD')
-rw-r--r--community/fswebcam/PKGBUILD36
1 files changed, 0 insertions, 36 deletions
diff --git a/community/fswebcam/PKGBUILD b/community/fswebcam/PKGBUILD
deleted file mode 100644
index 2fa49872d..000000000
--- a/community/fswebcam/PKGBUILD
+++ /dev/null
@@ -1,36 +0,0 @@
-# $Id: PKGBUILD 93773 2013-07-10 07:27:13Z bpiotrowski $
-# Maintainer: Thorsten Töpper <atsutane-tu@freethoughts.de>
-# Contributor: SpepS <dreamspepser at yahoo dot it>
-# Contributor: Philipp Robbel <robbel@gmail.com>
-
-pkgname=fswebcam
-pkgver=20110717
-pkgrel=3
-pkgdesc="Tiny and flexible webcam app."
-arch=('i686' 'x86_64')
-url="http://www.firestorm.cx/fswebcam"
-license=('GPL')
-depends=('gd')
-backup=("etc/$pkgname.conf")
-source=("$url/files/$pkgname-$pkgver.tar.gz")
-md5sums=('6e09f1f31cf7cd0ac1d4d688a0acbe41')
-
-build() {
- cd "$srcdir/$pkgname-$pkgver"
-
- ./configure --prefix=/usr
- make
-}
-
-package() {
- cd "$srcdir/$pkgname-$pkgver"
-
- make DESTDIR="$pkgdir/" install
-
- # Install configuration file
- # Commented to avoid problems with many devices, thank you SpepS
- sed "s_^_#_g" -i example.conf
- install -Dm644 example.conf "$pkgdir/etc/fswebcam.conf"
-}
-
-# vim:ts=2:sw=2:expandtab