diff options
author | James Meyer <james.meyer@operamail.com> | 2012-12-01 18:26:09 (GMT) |
---|---|---|
committer | James Meyer <james.meyer@operamail.com> | 2012-12-01 18:26:22 (GMT) |
commit | e2c33b0fae1fa4af8bbbfc917eb8e13a3ac0cb37 (patch) | |
tree | bee3fe89f2988dd244e11791755e129aa8c03b14 /abs/extra/community/motion-svn/PKGBUILD | |
parent | 8132c218cfc1f1acb1c6d12154e0d4ca075e77f2 (diff) | |
download | linhes_pkgbuild-e2c33b0fae1fa4af8bbbfc917eb8e13a3ac0cb37.zip linhes_pkgbuild-e2c33b0fae1fa4af8bbbfc917eb8e13a3ac0cb37.tar.gz linhes_pkgbuild-e2c33b0fae1fa4af8bbbfc917eb8e13a3ac0cb37.tar.bz2 |
Mass move of uncompiled packages to abs_not_built.
The will sit here for a bit, and then will be removed completely if no one claims them.
Diffstat (limited to 'abs/extra/community/motion-svn/PKGBUILD')
-rw-r--r-- | abs/extra/community/motion-svn/PKGBUILD | 42 |
1 files changed, 0 insertions, 42 deletions
diff --git a/abs/extra/community/motion-svn/PKGBUILD b/abs/extra/community/motion-svn/PKGBUILD deleted file mode 100644 index dcbd162..0000000 --- a/abs/extra/community/motion-svn/PKGBUILD +++ /dev/null @@ -1,42 +0,0 @@ -# Contributor: Demind <demind@gmail.com> -pkgname=motion-svn -pkgver=1 -pkgrel=1 -pkgdesc="Motion is a software motion detector. It grabs images from video4linux devices and/or from webcams." -arch=('i686' 'x86_64') -url="http://www.lavrsen.dk/twiki/bin/view/Motion/WebHome" -license=('GPL2') -depends=('zlib' 'libjpeg') -makedepends=('subversion') -provides=('motion') -conflicts=('motion') -install="motion-svn.install" -source=('rc.motion') -md5sums=('fc09828564850824f8549d258053e0b6') - -_svntrunk=http://www.lavrsen.dk/svn/motion/trunk/ -_svnmod=motion - -build() { - cd $startdir/src - - msg "Retrieving sources" - svn co $_svntrunk --config-dir ./ -r $pkgver $_svnmod - - [ -d ./$_svnmod-build ] && rm -fr ./$_svnmod-build - cp -r ./$_svnmod ./$_svnmod-build - cd ./$_svnmod-build - - msg "SVN checkout done or server timeout" - msg "Starting build" - - ./configure \ - --prefix=/usr \ - --sysconfdir=/etc - - make || return 1 - make DESTDIR=$startdir/pkg/ install || return 1 - install -D -m755 $startdir/src/rc.motion $startdir/pkg/etc/rc.d/motion - rm -rf $startdir/src/$_svnmod-build -} - |