Created
July 31, 2019 15:19
-
-
Save crabvk/f4d18258dbde84e3f8a85b4e06b879f9 to your computer and use it in GitHub Desktop.
Arch Linux AUR megatools PKGBUILD
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
pkgname=megatools | |
pkgver=1.10.2 | |
pkgrel=1 | |
pkgdesc="Command line client application for Mega" | |
arch=('x86_64') | |
url="http://megatools.megous.com" | |
license=('GPLv2') | |
depends=('curl' 'glib2') | |
provides=('megatools') | |
conflicts=('megatools') | |
makedepends=('asciidoc' 'docbook-xml' 'autoconf' 'libtool' 'automake') | |
source=("git://megous.com/megatools#tag=$pkgver") | |
options=(!libtool) | |
sha256sums=('SKIP') | |
prepare() { | |
cd megatools | |
./autogen.sh --prefix=/usr | |
} | |
build() { | |
cd megatools | |
make | |
} | |
package() { | |
cd megatools | |
make install DESTDIR="$pkgdir" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment