Package Details: linapple-git 2020.06.01.gae9fd93-1

Git Clone URL: https://aur.archlinux.org/linapple-git.git (read-only, click to copy)
Package Base: linapple-git
Description: Apple 2e emulator
Upstream URL: https://github.com/linappleii/linapple.git
Licenses: GPL2
Conflicts: linapple
Provides: linapple
Submitter: fuxter
Maintainer: fuxter
Last Packager: fuxter
Votes: 0
Popularity: 0.000000
First Submitted: 2016-03-19 10:00 (UTC)
Last Updated: 2021-03-22 09:08 (UTC)

Latest Comments

andreas_baumann commented on 2023-03-29 15:18 (UTC)

I had to add imagemagick to makedepends otherwise the build complained about a missing 'convert'.

FredBezies commented on 2021-03-29 18:47 (UTC)

@fuxter: you're welcome :)

fuxter commented on 2021-03-21 05:08 (UTC)

Thanks @FredBezies

Updated PKGBUILD; also had to add sdl_image as dependency.

FredBezies commented on 2021-03-16 09:36 (UTC) (edited on 2021-03-16 09:36 (UTC) by FredBezies)

Updated PKGBUILD:

# Maintainer: fuxter <fuxterz@gmail.com>

_name=linapple
pkgname="${_name}-git"
pkgver=2020.06.01.gae9fd93
pkgrel=1
pkgdesc="Apple 2e emulator"
arch=('i686' 'x86_64')
url="https://github.com/linappleii/linapple.git"
license=('GPL2')
depends=('sdl' 'zlib' 'libzip' 'curl')
makedepends=('git')
provides=("${_name}")
conflicts=("${_name}")
source=("${_name}::git+https://github.com/linappleii/linapple.git")
sha256sums=('SKIP')

pkgver() {
  cd "${srcdir}/${_name}"
  git log -1 --format="%cd.g%h" --date=short | sed 's/-/./g'
}

build() {
  cd "$srcdir/${_name}"
  pwd
  export CFLAGS="$CFLAGS $CPPFLAGS"
  make PREFIX="/usr"
}

package() {
  cd "$srcdir/${_name}"
  make DESTDIR="$pkgdir/usr/" install
}

# vim:set ts=2 sw=2 et:

FredBezies commented on 2021-03-16 09:22 (UTC)

New github seems to be: https://github.com/linappleii/linapple

mosh5382 commented on 2017-02-21 07:18 (UTC)

If you are still looking for this I have uploaded an x86_64 AUR package: https://aur.archlinux.org/packages/linapple/

getkey commented on 2016-09-23 19:15 (UTC)

Can you add `x86_64` to the supported architectures, please? :-)