- Auslisten aller im Projekt definierten Funktionen
- Suche nach toten Funktionen im Projekt - Doppelklick auf Funktion öffnet die Datei mit der Deklaration
This commit is contained in:
36
PKGBUILD
Normal file
36
PKGBUILD
Normal file
@@ -0,0 +1,36 @@
|
||||
# Maintainer: Dany Thinnes <dany@projekt-hirnfrei.de>
|
||||
# Projekt Hirnfrei - https://www.projekt-hirnfrei.de
|
||||
|
||||
pkgname=barecode
|
||||
pkgver=1.1.0
|
||||
pkgrel=1
|
||||
pkgdesc="Schlanker modularer Code-Editor für HTML, PHP, CSS und C++"
|
||||
arch=('x86_64' 'aarch64')
|
||||
url="https://www.projekt-hirnfrei.de"
|
||||
license=('MIT')
|
||||
depends=('qt6-base')
|
||||
makedepends=('cmake' 'ninja')
|
||||
provides=('barecode')
|
||||
conflicts=('barecode-git')
|
||||
source=("$pkgname-$pkgver.tar.gz::https://git.projekt-hirnfrei.de/diabolus/BareCode/archive/v$pkgver.tar.gz")
|
||||
sha256sums=('SKIP') # Nach erstem Download ersetzen: sha256sum barecode-1.1.0.tar.gz
|
||||
|
||||
build() {
|
||||
cd "BareCode"
|
||||
cmake -B build \
|
||||
-G Ninja \
|
||||
-DCMAKE_BUILD_TYPE=Release \
|
||||
-DCMAKE_INSTALL_PREFIX=/usr \
|
||||
-DCMAKE_SKIP_RPATH=ON
|
||||
cmake --build build
|
||||
}
|
||||
|
||||
check() {
|
||||
:
|
||||
}
|
||||
|
||||
package() {
|
||||
cd "BareCode"
|
||||
DESTDIR="$pkgdir" cmake --install build
|
||||
install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
|
||||
}
|
||||
Reference in New Issue
Block a user