diff options
author | Aqua-sama <aqua@iserlohn-fortress.net> | 2018-01-05 20:23:33 +0100 |
---|---|---|
committer | Aqua-sama <aqua@iserlohn-fortress.net> | 2018-01-05 20:23:33 +0100 |
commit | 72b15842815566c46b9e770915fa917d41e7fe89 (patch) | |
tree | 132e5ef83fca501b436003838c0bf21fb6bc961b /linux/makepkg/PKGBUILD | |
parent | Various minor fixes (diff) | |
download | smolbote-72b15842815566c46b9e770915fa917d41e7fe89.tar.xz |
Updated ReadMe and pkgbuild
Diffstat (limited to 'linux/makepkg/PKGBUILD')
-rw-r--r-- | linux/makepkg/PKGBUILD | 47 |
1 files changed, 0 insertions, 47 deletions
diff --git a/linux/makepkg/PKGBUILD b/linux/makepkg/PKGBUILD deleted file mode 100644 index 9a17f9b..0000000 --- a/linux/makepkg/PKGBUILD +++ /dev/null @@ -1,47 +0,0 @@ -# Maintainer: Aqua-sama <aqua@iserlohn-fortress.net> - -pkgname=smolbote-git -pkgver=0.0.0 -pkgrel=1 -pkgdesc='Yet another no-frills browser' -url="https://neueland.iserlohn-fortress.net/smolbote" - -arch=('x86_64') -license=('GPL3') - -depends=('qt5-base' 'qt5-webengine') -makedepends=('git' 'cmake' 'libconfig' 'pkg-config') - -source=("smolbote-git::git+git://neueland.iserlohn-fortress.net/smolbote.git") -sha512sums=('SKIP') - -# any patches go here -#prepare() { -#} - -pkgver() { - cd smolbote-git - echo "$(git describe --long --tags | tr - .)" -} - -build() { - rm -rf "$pkgname-$pkgver" - mkdir "$pkgname-$pkgver" - cd "$pkgname-$pkgver" - - # Generate a makefile - # Adjust the install prefix as necessary, default is /usr/local/bin - cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr/local "$srcdir/smolbote-git" - - # Use this if you want to link with libc++ instead - # This requires clang, since gcc doesn't understand the concept of not using libstdc++ - #cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr/local -DCMAKE_CXX_COMPILER=/usr/bin/clang++ -DUseLibCpp=On "$srcdir/smolbote-git" - - # build, with 4 threads - make -j 4 -} - -package() { - cd "$pkgname-$pkgver" - make DESTDIR="$pkgdir/" install -} |