diff options
author | Toni500git | 2024-05-17 19:26:51 +0200 |
---|---|---|
committer | Toni500git | 2024-05-17 19:26:51 +0200 |
commit | 315fa39ed1dd3c943b50ae51e17730dca0d85d0b (patch) | |
tree | 27487fa0f20a3d3638b44539ccc97edcd34557f0 | |
parent | 40739ef18c01f7ad020d487b71f2bb95e8aef346 (diff) | |
download | aur-315fa39ed1dd3c943b50ae51e17730dca0d85d0b.tar.gz |
update to version v0.6.6
-rw-r--r-- | .SRCINFO | 5 | ||||
-rw-r--r-- | .gitignore | 4 | ||||
-rw-r--r-- | PKGBUILD | 8 |
3 files changed, 10 insertions, 7 deletions
@@ -1,14 +1,13 @@ pkgbase = tabaur pkgdesc = A customizable and lightweight AUR helper, designed to be simple but powerful. - pkgver = 0.6.4 + pkgver = 0.6.6 pkgrel = 1 url = https://github.com/BurntRanch/TabAUR arch = x86_64 arch = aarch64 license = GPL3 + makedepends = base-devel makedepends = cmake - makedepends = make - makedepends = gcc depends = pacman depends = curl optdepends = sudo: privilege elevation diff --git a/.gitignore b/.gitignore new file mode 100644 index 000000000000..4aac46624875 --- /dev/null +++ b/.gitignore @@ -0,0 +1,4 @@ +TabAUR/ +pkg/ +src/ +*.tar.zst @@ -1,14 +1,14 @@ # Maintainer: Toni500 <tonino512@linuxmail.org> pkgname="tabaur" _pkgname="TabAUR" -pkgver=0.6.4 +pkgver=0.6.6 pkgrel=1 pkgdesc="A customizable and lightweight AUR helper, designed to be simple but powerful." arch=('x86_64' 'aarch64') url="https://github.com/BurntRanch/TabAUR" license=('GPL3') depends=('pacman' 'curl') -makedepends=('cmake' 'make' 'gcc') +makedepends=('base-devel' 'cmake') optdepends=( "sudo: privilege elevation" "doas: privilege elevation" @@ -26,11 +26,11 @@ prepare() { } build() { - make -C "${srcdir}/${_pkgname}" CPPFLAGS="-O2 -mtune=generic -funroll-all-loops -march=native -isystem include -std=c++20" + make -C "${srcdir}/${_pkgname}" DEBUG=0 } package() { cd "${srcdir}/${_pkgname}" - install -Dm755 "taur" "${pkgdir}/usr/bin/taur" + make install PREFIX="${pkgdir}/usr" install -Dm644 "LICENSE" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" } |