summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 61653ab9768fb81cbf39934faf150e3e6b117384 (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
pkgname='apk-preview'
pkgver=1.0
pkgrel=1
pkgdesc="A graphical user interface to see APK file details & icon"
arch=('x86_64')
url='https://github.com/alireza6677/apk-preview'
license=('GPL3')
depends=( 'python' 'python-gobject' 'unzip' )
makedepends=('git')
provides=("apk-preview")
source=("${pkgname}::git+https://github.com/alireza6677/apk-preview.git")
md5sums=('SKIP')


prepare() {
    cd "${srcdir}/${pkgname}"

}
package() {
	cd "${srcdir}/${pkgname}"
        install -d ${pkgdir}/usr    
        install -d ${pkgdir}/usr/bin
	cp -a ./* ${pkgdir}/usr/bin/
}