Compare commits
32 commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
3606d043c9 | ||
|
|
9e5aa38e10 | ||
|
|
2efeb02f4a | ||
|
|
f9e0bd3445 | ||
|
|
8ec4c6c31d |
||
|
|
446e2b2865 | ||
|
|
e114a64d86 | ||
|
|
bf90413f57 | ||
|
|
226b1f612c | ||
|
|
aac49a7c36 | ||
|
|
2bbf20fa4f | ||
|
|
6997512618 | ||
|
|
2fff737c78 | ||
|
|
4fb061a7e5 | ||
|
|
4d4204fd7f | ||
|
|
f823958c0a | ||
|
|
737d28990a | ||
|
|
81a06091a5 | ||
|
|
a44e4bb09d | ||
|
|
c8bebf8a09 | ||
|
|
cd29bf2d39 | ||
|
|
92d04de668 | ||
|
|
edac1de9f2 | ||
|
|
38200ac6c8 | ||
|
|
a5ae52d04e | ||
|
|
7646dc72c7 | ||
|
|
44bbe44615 | ||
|
|
428d48a9f3 | ||
|
|
6d4e281167 | ||
|
|
d5ecada271 | ||
|
|
a7dc1c3f52 | ||
|
|
ef9bb6a332 |
5 changed files with 1 additions and 89 deletions
|
|
@ -1 +0,0 @@
|
|||
adplay-1.5.tar.bz2
|
||||
21
Makefile
21
Makefile
|
|
@ -1,21 +0,0 @@
|
|||
# Makefile for source rpm: adplay
|
||||
# $Id$
|
||||
NAME := adplay
|
||||
SPECFILE = $(firstword $(wildcard *.spec))
|
||||
|
||||
define find-makefile-common
|
||||
for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done
|
||||
endef
|
||||
|
||||
MAKEFILE_COMMON := $(shell $(find-makefile-common))
|
||||
|
||||
ifeq ($(MAKEFILE_COMMON),)
|
||||
# attept a checkout
|
||||
define checkout-makefile-common
|
||||
test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2
|
||||
endef
|
||||
|
||||
MAKEFILE_COMMON := $(shell $(checkout-makefile-common))
|
||||
endif
|
||||
|
||||
include $(MAKEFILE_COMMON)
|
||||
66
adplay.spec
66
adplay.spec
|
|
@ -1,66 +0,0 @@
|
|||
# SPEC file for AdPlay, primary target is the Fedora Extras
|
||||
# RPM repository.
|
||||
|
||||
Name: adplay
|
||||
Version: 1.5
|
||||
Release: 3%{?dist}
|
||||
Summary: An AdLib (OPL2) music player build on AdPlug
|
||||
URL: http://adplug.sourceforge.net/
|
||||
Group: Applications/Multimedia
|
||||
Source: http://download.sourceforge.net/adplug/%{name}-%{version}.tar.bz2
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
||||
License: GPL
|
||||
BuildRequires: adplug-devel
|
||||
BuildRequires: audiofile-devel
|
||||
BuildRequires: alsa-lib-devel
|
||||
BuildRequires: esound-devel
|
||||
|
||||
%description
|
||||
AdPlay is a command-line player for AdLib (OPL2) music utilizing
|
||||
the AdPlug library.
|
||||
|
||||
%prep
|
||||
%setup -q
|
||||
|
||||
%build
|
||||
# I intentionally disable OSS and SDL: Fedora installs ALSA by default
|
||||
# and I don't want to pull in the entire SDL library for this. We
|
||||
# also explicitly forbid the QNX QSA driver, it won't hurt.
|
||||
%configure --disable-static --disable-output-oss --disable-output-sdl \
|
||||
--disable-output-qsa
|
||||
make %{?_smp_mflags}
|
||||
|
||||
%install
|
||||
rm -rf $RPM_BUILD_ROOT
|
||||
make DESTDIR=$RPM_BUILD_ROOT install
|
||||
|
||||
%clean
|
||||
rm -rf $RPM_BUILD_ROOT
|
||||
|
||||
%files
|
||||
%defattr(-, root, root)
|
||||
%{_bindir}/adplay
|
||||
%{_mandir}/man1/*
|
||||
%doc AUTHORS ChangeLog COPYING NEWS README TODO
|
||||
|
||||
%changelog
|
||||
* Fri Sep 1 2006 Linus Walleij <triad@df.lth.se> 1.5-3
|
||||
- Rebuild for Fedora Extras 6.
|
||||
|
||||
* Wed Jul 26 2006 Linus Walleij <triad@df.lth.se> 1.5-2
|
||||
- Match upstream library bump by rebuild.
|
||||
|
||||
* Sat May 6 2006 Linus Walleij <triad@df.lth.se> 1.5-1
|
||||
- Upstream release a new version.
|
||||
|
||||
* Wed Feb 1 2006 Linus Walleij <triad@df.lth.se> 1.4-4
|
||||
- RM unnecessary BR, fixup CXXFLAGS.
|
||||
|
||||
* Tue Jan 24 2006 Linus Walleij <triad@df.lth.se> 1.4-3
|
||||
- Download address.
|
||||
|
||||
* Mon Jan 23 2006 Linus Walleij <triad@df.lth.se> 1.4-2
|
||||
- Happy dist-tag.
|
||||
|
||||
* Sun Jan 15 2006 Linus Walleij <triad@df.lth.se> 1.4-1
|
||||
- First try at an AdPlay RPM.
|
||||
1
dead.package
Normal file
1
dead.package
Normal file
|
|
@ -0,0 +1 @@
|
|||
adplay fails to build from source: https://bugzilla.redhat.com/show_bug.cgi?id=1674635
|
||||
1
sources
1
sources
|
|
@ -1 +0,0 @@
|
|||
18e1ac84b6f07d0388902a083f400da7 adplay-1.5.tar.bz2
|
||||
Reference in a new issue