updated on Tue Jan 10 04:01:21 UTC 2012
[aur-mirror.git] / delaycut-git / PKGBUILD
blob3863d63afa835bf09b70b80cc1d81ede6e4ab6dc
1 pkgname=delaycut-git
2 pkgver=20111228
3 pkgrel=1
4 pkgdesc="Delaycut corrects delay and is also able to cut audio files coded ac3, dts, mpa and wav, It is also able to fix CRC errors in ac3 and mpa files"
5 arch=('i686' 'x86_64')
6 url='https://github.com/athomasm/delaycut'
7 license=GPL3
8 depends=('qt')
9 makedepends=('git')
10 conflicts=('delaycut')
11 replaces=('delaycut')
13 _gitroot="https://github.com/athomasm/delaycut.git"
14 _gitname="delaycut"
16 build() {
17   cd "${srcdir}" || return 1
18   msg "Connecting to GIT server...."
20   if [ -d $_gitname ] ; then
21     cd $_gitname && git pull origin
22     msg "The local files are updated."
23   else
24     git clone $_gitroot
25   fi
27   msg "GIT checkout done or server timeout"
28   msg "Starting make..."
30   if [ -d build ]; then
31     msg "Clean previous build directory..."
32     rm -rf build
33   fi
34   mkdir build
35   cd build
36   qmake CONFIG+=Linux ../delaycut/delaycut.pro
37   make
40 package () {
41   cd "${srcdir}"/build
42   make INSTALL_ROOT="${pkgdir}" install