Last active
January 3, 2016 12:09
-
-
Save quigybo/8461285 to your computer and use it in GitHub Desktop.
Update PKGBUILD to current guidelines
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: Mark Pustjens <[email protected]> | |
# Previous Contributor: Geoffroy Carrier <[email protected]> | |
# Previous Contributor: Giorgio Lando <[email protected]> | |
# Previous Contributor: Leslie P. Polzer <[email protected]> | |
pkgname=isync | |
pkgver=1.1.0 | |
pkgrel=1 | |
pkgdesc="IMAP mail synchronizer for offline/batch mail editing" | |
url="http://isync.sourceforge.net/" | |
arch=(i686 x86_64) | |
license=(GPL) | |
depends=(openssl) | |
source=(http://downloads.sourceforge.net/sourceforge/isync/$pkgname-$pkgver.tar.gz) | |
sha256sums=('51f5618c239013fb770f98ae269f24ee417214efaaf7e22821b4a27cf9a9213c') | |
build() { | |
cd "${srcdir}"/$pkgname-$pkgver | |
./configure --prefix=/usr | |
make | |
} | |
package() { | |
cd "${srcdir}"/$pkgname-$pkgver | |
make DESTDIR="$pkgdir" install | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment