Created
November 13, 2015 10:50
-
-
Save handymenny/3d4060cc4dabc7b405ae to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Maintainer: American_Jesus <american.jesus.pt AT gmail DOT com> | |
pkgname=connman-gtk | |
pkgver=1.1 | |
pkgrel=2 | |
pkgdesc="GTK GUI for ConnMan" | |
arch=('i686' 'x86_64') | |
url="https://github.com/jgke/connman-gtk" | |
license=('GPL') | |
depends=('glib2' 'gtk3') | |
makedepends=('intltool' 'git' 'openconnect') | |
optdepends=('openconnect: for AnyConnect VPNs') | |
install=$pkgname.install | |
source=("git+https://github.com/jgke/connman-gtk.git#tag=v${pkgver}") | |
sha256sums=('SKIP') | |
build() { | |
cd "${srcdir}/$pkgname" | |
./autogen.sh | |
./configure \ | |
--bindir=/usr/bin \ | |
--datarootdir=/usr/share \ | |
--mandir=/usr/share/man \ | |
--with-openconnect=dynamic | |
make | |
} | |
package() { | |
cd "${srcdir}/$pkgname" | |
make DESTDIR="$pkgdir" install | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment