1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79
|
# $Id: /svn/trunk/debian/dists/aylet/debian/packages 2422 2007-09-24T15:08:19.987362Z dexter $
## debian/packages for aylet
## Customised for aylet by Krystian Wlosek
Source: aylet
Section: otherosfs
Priority: optional
Maintainer: Krystian Wlosek <tygrys@waw.pdi.net>
Uploaders: Piotr Roszatycki <dexter@debian.org>
Standards-Version: 3.7.2
Upstream-Source: <URL:ftp://ftp.ibiblio.org/pub/Linux/apps/sound/players/aylet-0.5.tar.gz>
Home-Page: <URL:http://rus.members.beeb.net/aylet.html>
Description: player for Spectrum '.ay' music files
aylet plays music files in the `.ay' format. These files are
essentially wrappers around bits of Z80 code which play music on the
Sinclair ZX Spectrum 128's sound hardware - either the beeper, or
(eponymously) the AY-3-8912 sound chip. Files using the Amstrad CPC
ports are also supported.
#Build-Depends: libncurses5-dev, libgtk1.2-dev, libgtk2.0-dev
Build-Depends: libncurses5-dev, libgtk2.0-dev
Copyright: GPL
Copyright (C) 2001-2005 Russell Marks.
Z80 emulation copyright (C) 1994 Ian Collier.
Patches: patches/*.diff
Major-Changes:
[001] Remove gcc warnings.
[002] GTK2 port and replace gtk1.2 version.
Build: sh
CC=${CC:-gcc}
CFLAGS=${CFLAGS:--Wall -g}
LDFLAGS=${LDFLAGS:-}
if [ "${DEB_BUILD_OPTIONS#*noopt}" != "$DEB_BUILD_OPTIONS" ]; then
CFLAGS="$CFLAGS -O0"
else
CFLAGS="$CFLAGS -O2"
fi
# make CFLAGS="$CFLAGS -DDRIVER_OSS" CC="$CC" gtk1
# cp xaylet aylet-gtk
make CFLAGS="$CFLAGS -DDRIVER_OSS" CC="$CC" clean gtk2
cp xaylet aylet-gtk2
Clean: sh
make clean || true
Package: aylet
Suggests: aylet-gtk
Architecture: any
Description: ncurses-based player for Spectrum '.ay' music files
One source of `.ay' files playable with aylet is "Project AY"
on the World of Spectrum website:
.
http://www.worldofspectrum.org/
Install: sh
yada install -bin aylet
yada install -man -section 1 -gzip aylet.1
yada install -doc -as changelog ChangeLog
yada install -doc NEWS README TODO
Package: aylet-gtk
Suggests: aylet
Architecture: any
Description: X-GTK2-based player for Spectrum '.ay' music files
One source of `.ay' files playable with aylet-gtk is "Project AY"
on the World of Spectrum website:
.
http://www.worldofspectrum.org/
#Menu:
# ?package(aylet-gtk): needs="X11" \
# section="Apps/Sound" \
# title="Aylet" \
# command="/usr/bin/xaylet" \
# hints="Player for .ay files"
Install: sh
yada install -bin aylet-gtk2 -as aylet-gtk
yada install -bin xaylet -as aylet-gtk
yada symlink -bin aylet-gtk -as xaylet
yada install -man -section 1 -gzip -as aylet-gtk.1 aylet.1
yada symlink -man -section 1 -as xaylet.1 aylet-gtk.1
yada install -doc -as changelog ChangeLog
yada install -doc NEWS README TODO
|