This commit is contained in:
Евгений Храмов 2024-11-04 16:34:04 +03:00
parent 9102cf52ea
commit 3c9ad8977d
2 changed files with 73 additions and 0 deletions

@ -0,0 +1,32 @@
name='extra-cmake-modules'
version='6.7.0'
release='1'
desc='Extra modules and scripts for CMake'
homepage='https://community.kde.org/Frameworks'
maintainer_ru='Евгений Храмов <xpamych@yandex.ru>'
architectures=('all')
license=('LGPL')
deps=(
'cmake'
)
build_deps=(
'python3-requests'
'python3-sphinx'
'qt6-qttools'
)
sources=("https://download.kde.org/stable/frameworks/${version%.*}/$name-$version.tar.xz")
checksums=('SKIP')
build() {
cmake -B build -S $name-$version \
-DCMAKE_INSTALL_PREFIX=/usr \
-DBUILD_HTML_DOCS=ON \
-DBUILD_QTHELP_DOCS=ON
cmake --build build
}
package() {
DESTDIR="$pkgdir" cmake --install build
}

41
prison/alr.sh Normal file

@ -0,0 +1,41 @@
name='prison'
version='6.7.0'
release='1'
desc='A barcode API to produce QRCode barcodes and DataMatrix barcodes.'
homepage='https://community.kde.org/Frameworks'
maintainer_ru='Евгений Храмов <xpamych@yandex.ru>'
architectures=('amd64')
license=('MIT')
deps=(
'libgcc'
'glibc'
'libdmtx'
'qrencode'
'qt6-qtbase'
'qt6-qtmultimedia'
'libZXing3'
)
build_deps=(
'doxygen'
'extra-cmake-modules'
'qrencode-devel'
'qt6-qtdeclarative'
'qt6-doctools'
'qt6-qttools'
)
sources=("https://download.kde.org/stable/frameworks/${version%.*}/$name-$version.tar.xz")
checksums=('SKIP')
build() {
cmake -B build -S $name-$version \
-DCMAKE_INSTALL_PREFIX=/usr \
-DBUILD_HTML_DOCS=ON \
-DBUILD_QTHELP_DOCS=ON
cmake --build build
}
package() {
DESTDIR="$pkgdir" cmake --install build
}