blob: 33aa8d8d4dae128c710a0086a79a5619c82e4748 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
# Maintainer: justforlxz <justforlxz@gmail.com>
pkgname=deepin-network-utils-git
pkgver=5.4.9.r12.ge26dfa3
pkgrel=1
pkgdesc='DDE network utils'
arch=('x86_64' 'aarch64')
url="https://github.com/linuxdeepin/dde-network-utils"
license=('GPL3')
depends=('deepin-qt-dbus-factory-git' 'gsettings-qt')
makedepends=('git' 'qt5-tools' 'gsettings-qt' 'gtest')
conflicts=('deepin-network-utils')
provides=('deepin-network-utils')
groups=('deepin-git')
source=("$pkgname::git+https://github.com/linuxdeepin/dde-network-utils.git")
sha512sums=('SKIP')
pkgver() {
cd $pkgname
git describe --long --tags | sed 's/\([^-]*-g\)/r\1/;s/-/./g'
}
prepare() {
cd $pkgname
if [[ ! -z ${sha} ]];then
git checkout -b $sha
fi
}
build(){
cd $pkgname
qmake-qt5 PREFIX=/usr
make
}
package() {
cd $pkgname
make INSTALL_ROOT="$pkgdir" install
}
|