28 lines
611 B
Bash
28 lines
611 B
Bash
# Maintainer: Edgar <Edgar{at}AnotherFoxGuy.com>
|
|
pkgname=fuel-git
|
|
pkgver=2.0.0
|
|
pkgrel=1
|
|
pkgdesc="A GUI front-end to Fossil SCM"
|
|
arch=(i686 x86_64)
|
|
url="https://fuel-scm.org/"
|
|
license=('GPL2')
|
|
depends=('qt5-base>=5.4.0' 'qt5-webengine>=5.4.0' 'fossil' 'qtkeychain-qt5')
|
|
makedepends=('git' 'cmake')
|
|
source=("git://github.com/AnotherFoxGuy/fuel-scm")
|
|
md5sums=('SKIP')
|
|
|
|
build() {
|
|
cd "$srcdir/fuel-scm"
|
|
[ -d build ] && rm -r build
|
|
mkdir build
|
|
cd build
|
|
cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr ..
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "$srcdir/fuel-scm/build"
|
|
make DESTDIR="${pkgdir}" install
|
|
}
|
|
|