Created
February 12, 2015 21:02
-
-
Save rafael-neri/f8fcf8470401a9bcd0be to your computer and use it in GitHub Desktop.
PKGBUILD example to use in AUR
This file contains 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
pkgname=kcenter | |
pkgver=0.0.1 | |
pkgrel=1 | |
pkgdesc="A system configuration for KDE" | |
arch=('i686' 'x86_64') | |
url="http://www.kaiana.com.br/" | |
license=('GPLv2') | |
depends=('python', 'python-pyqt5', 'qt5-webkit', 'python-xdg', ) | |
source=('https://github.com/kaiana/${pkgname}/archive/${pkgver}.tar.gz') | |
md5sums=('6a676c12910d0ca2cd2c9a55d954fce4df385f1e') | |
package() { | |
cp -Rf "${srcdir}/${pkgname}-${pkgver}/usr" /usr | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment