You are not logged in.
Okay; so I'm attempting to make my first AUR package. Just wondering if I'm on the right track... I've got an AUR account now and below is my current PKGBUILD. I know I still need to generate the md5 sums, but otherwise do things look ok? Thanks!
# Maintainer: Anthony Karam <karam.anthony.k@gmail.com>
pkgname=yellowcot
pkgver=1.2.5
pkgrel=1
pkgdesc="a free, lightweight, open-source, cross-platform, Qt-based multimedia flash card simulator"
arch=('any')
url="http://code.google.com/p/yellowcot"
license=('GPL')
groups=()
depends=('imagemagick', 'qt')
makedepends=()
optdepends=()
provides=()
conflicts=()
replaces=()
backup=()
options=()
install=
changelog=
source=('http://yellowcot.googlecode.com/files/$pkgname-$pkgver.tar.bz2')
noextract=()
md5sums=() #generate with 'makepkg -g'
package() {
cd "$pkgname-$pkgver"
make
make install
}Offline
Just follow https://wiki.archlinux.org/index.php/Creating_Packages (and the part about build/package functions in particular). And you can leave out variables you don't need/use.
Offline
Offline
Also, you don't need a comma between the dependent packages, so that line should be
depends=('imagemagick' 'qt')Intel(R) Celeron(R) CPU E3400 @ 2.60GHz, x86_64. AURs.
“No one without the knowledge of geometry may enter.“ Plato.
Offline
yellowcot is GPL3 (or any later version), so I assume you should use:
license=('GPL3')Offline