# This is an example PKGBUILD file. Use this as a start to creating your own, # and remove these comments. For more information, see 'man PKGBUILD'. # NOTE: Please fill out the license field for your package! If it is unknown, # then please put 'unknown'. # The following guidelines are specific to BZR, GIT, HG and SVN packages. # Other VCS sources are not natively supported by makepkg yet. # Maintainer: Ning Humbert pkgname=hitwh-cscore pkgver=1.3 pkgrel=3 pkgdesc="Scores checker for undergraduate students in HITwh" arch=('i686' 'x86_64') license=('Apache') depends=(python python-prettytable python-beautifulsoup4 python-requests python-lxml) provides=("cscore") source=('cscore') md5sums=('9f1d7f4fbb966a1b2976e39a5247fcd6') package() { mkdir -p $pkgdir/usr/bin install -Dm 755 cscore $pkgdir/usr/bin/ }