forked from mirrors/gio-qt
feat: add archlinux build
add archlinux build Log:
This commit is contained in:
parent
2ec44c007b
commit
b25f2af50d
1 changed files with 24 additions and 0 deletions
24
archlinux/PKGBUILD
Normal file
24
archlinux/PKGBUILD
Normal file
|
@ -0,0 +1,24 @@
|
|||
# Maintainer: Dingyuan Zhang <lxz@mkacg.com>
|
||||
|
||||
pkgname=gio-qt
|
||||
pkgver=0.0.11
|
||||
pkgrel=1
|
||||
pkgdesc='Gio wrapper for Qt applications'
|
||||
arch=('x86_64')
|
||||
url="https://github.com/linuxdeepin/gio-qt"
|
||||
license=('LGPL3')
|
||||
depends=('glibmm' 'qt5-base')
|
||||
makedepends=('cmake')
|
||||
source=('source.tar.gz')
|
||||
sha512sums=('SKIP')
|
||||
|
||||
build() {
|
||||
cd $deepin_source_name
|
||||
cmake -DCMAKE_INSTALL_PREFIX=/usr -DBUILD_DOCS=OFF .
|
||||
make
|
||||
}
|
||||
|
||||
package() {
|
||||
cd $deepin_source_name
|
||||
make DESTDIR="$pkgdir" install
|
||||
}
|
Loading…
Reference in a new issue