diff options
author | Jake Leahy | 2024-10-17 21:50:45 +1100 |
---|---|---|
committer | Jake Leahy | 2024-10-17 21:50:45 +1100 |
commit | 5536fbbfbe49cba6a16027cdeb0a64a3e8ff43ee (patch) | |
tree | 34e245217ccb0059bde9a7dfcc0c1aac81f568c8 | |
parent | 2b8d7315cf9f3f41f363bbb86fd4a0699fdf9bc0 (diff) | |
download | aur-5536fbbfbe49cba6a16027cdeb0a64a3e8ff43ee.tar.gz |
Keep the structure the same as its packaged
Add in provides/conflicts
-rw-r--r-- | .SRCINFO | 4 | ||||
-rw-r--r-- | PKGBUILD | 7 |
2 files changed, 7 insertions, 4 deletions
@@ -1,12 +1,14 @@ pkgbase = slint-cpp-bin pkgdesc = Slint is a toolkit to efficiently develop fluid graphical user interfaces for any display: embedded devices and desktop applications pkgver = 1.8.0 - pkgrel = 1 + pkgrel = 2 url = https://slint-ui.com arch = x86_64 license = GPL3 depends = freetype2 depends = qt5-base + provides = slint-cpp + conflicts = slint-cpp source = slint-cpp-1.8.0.tar.gz::https://github.com/slint-ui/slint/releases/download/v1.8.0/Slint-cpp-1.8.0-Linux-x86_64.tar.gz sha256sums = 3999bb654437720972f085946549a0ff865b5971784e3ad575b054b73b746f75 @@ -2,7 +2,7 @@ pkgname=slint-cpp-bin pkgver=1.8.0 -pkgrel=1 +pkgrel=2 pkgdesc="Slint is a toolkit to efficiently develop fluid graphical user interfaces for any display: embedded devices and desktop applications" arch=("x86_64") url="https://slint-ui.com" @@ -10,11 +10,12 @@ license=("GPL3") source=("slint-cpp-$pkgver.tar.gz::https://github.com/slint-ui/slint/releases/download/v$pkgver/Slint-cpp-$pkgver-Linux-$CARCH.tar.gz") sha256sums=('3999bb654437720972f085946549a0ff865b5971784e3ad575b054b73b746f75') depends=("freetype2" "qt5-base") +provides=("slint-cpp") +conflicts=("slint-cpp") + package() { cd Slint-cpp-$pkgver-Linux-$CARCH/ mkdir -p ${pkgdir}/usr/ cp -r . ${pkgdir}/usr/ - cp ${pkgdir}/usr/include/slint/* ${pkgdir}/usr/include/ - rm -rf ${pkgdir}/usr/include/slint/ } |