🐛 Fixed PKGBUILD
This commit is contained in:
27
dist/arch-git/PKGBUILD
vendored
Normal file
27
dist/arch-git/PKGBUILD
vendored
Normal file
@ -0,0 +1,27 @@
|
||||
# Maintainer: Edgar <Edgar{at}AnotherFoxGuy.com>
|
||||
pkgname=fuel-git
|
||||
pkgver=2.0.1
|
||||
pkgrel=3
|
||||
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
|
||||
}
|
||||
|
Reference in New Issue
Block a user