forked from pool/schismtracker
osc copypac from project:multimedia:apps package:schism revision:2
OBS-URL: https://build.opensuse.org/package/show/multimedia:apps/schismtracker?expand=0&rev=1
This commit is contained in:
commit
6f4c5bf4c7
23
.gitattributes
vendored
Normal file
23
.gitattributes
vendored
Normal file
@ -0,0 +1,23 @@
|
||||
## Default LFS
|
||||
*.7z filter=lfs diff=lfs merge=lfs -text
|
||||
*.bsp filter=lfs diff=lfs merge=lfs -text
|
||||
*.bz2 filter=lfs diff=lfs merge=lfs -text
|
||||
*.gem filter=lfs diff=lfs merge=lfs -text
|
||||
*.gz filter=lfs diff=lfs merge=lfs -text
|
||||
*.jar filter=lfs diff=lfs merge=lfs -text
|
||||
*.lz filter=lfs diff=lfs merge=lfs -text
|
||||
*.lzma filter=lfs diff=lfs merge=lfs -text
|
||||
*.obscpio filter=lfs diff=lfs merge=lfs -text
|
||||
*.oxt filter=lfs diff=lfs merge=lfs -text
|
||||
*.pdf filter=lfs diff=lfs merge=lfs -text
|
||||
*.png filter=lfs diff=lfs merge=lfs -text
|
||||
*.rpm filter=lfs diff=lfs merge=lfs -text
|
||||
*.tbz filter=lfs diff=lfs merge=lfs -text
|
||||
*.tbz2 filter=lfs diff=lfs merge=lfs -text
|
||||
*.tgz filter=lfs diff=lfs merge=lfs -text
|
||||
*.ttf filter=lfs diff=lfs merge=lfs -text
|
||||
*.txz filter=lfs diff=lfs merge=lfs -text
|
||||
*.whl filter=lfs diff=lfs merge=lfs -text
|
||||
*.xz filter=lfs diff=lfs merge=lfs -text
|
||||
*.zip filter=lfs diff=lfs merge=lfs -text
|
||||
*.zst filter=lfs diff=lfs merge=lfs -text
|
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
||||
.osc
|
20
schism.changes
Normal file
20
schism.changes
Normal file
@ -0,0 +1,20 @@
|
||||
-------------------------------------------------------------------
|
||||
Wed Feb 24 09:50:35 UTC 2010 - jengelh@medozas.de
|
||||
|
||||
- updated to Hg snapshot 20100224
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Dec 11 11:08:26 CET 2007 - prusnak@suse.cz
|
||||
|
||||
- updated to CVS snapshot 20071208
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Nov 1 16:59:48 CET 2007 - prusnak@suse.cz
|
||||
|
||||
- added desktop and icon files
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Sep 18 17:57:58 CEST 2007 - prusnak@suse.cz
|
||||
|
||||
- created package (initial version 0.4.99.1 = 0.5rc1)
|
||||
|
9
schism.desktop
Normal file
9
schism.desktop
Normal file
@ -0,0 +1,9 @@
|
||||
[Desktop Entry]
|
||||
Name=Schism Tracker
|
||||
GenericName=Tracker
|
||||
Comment=Music editor that aims to match the look and feel of Impulse Tracker
|
||||
Exec=schismtracker
|
||||
Icon=schism
|
||||
Categories=AudioVideo;Sequencer;
|
||||
Terminal=false
|
||||
Type=Application
|
70
schism.spec
Normal file
70
schism.spec
Normal file
@ -0,0 +1,70 @@
|
||||
#
|
||||
# spec file for package schism
|
||||
#
|
||||
# Copyright (c) 2007 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||
# This file and all modifications and additions to the pristine
|
||||
# package are under the same license as the package itself.
|
||||
#
|
||||
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
||||
#
|
||||
|
||||
# norootforbuild
|
||||
|
||||
Name: schism
|
||||
Version: 0.20100224
|
||||
Release: 1
|
||||
URL: http://schismtracker.org/
|
||||
License: GPL v2 or later
|
||||
Group: Productivity/Multimedia/Sound/Editors and Convertors
|
||||
Summary: Music editor that aims to match the look and feel of Impulse Tracker
|
||||
|
||||
#Hg-Clone: http://schismtracker.org/hg/
|
||||
Source: schismtracker-%version.tar.bz2
|
||||
Source1: %{name}.desktop
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
BuildRequires: SDL-devel >= 1.2.10, xorg-x11-devel
|
||||
BuildRequires: alsa-devel freeglut-devel gcc-c++
|
||||
BuildRequires: python >= 2.4
|
||||
BuildRequires: update-desktop-files
|
||||
|
||||
%description
|
||||
Schism Tracker is a free reimplementation of Impulse Tracker, a
|
||||
program used to create high quality music without the requirements of
|
||||
specialized, expensive equipment, and with a unique "finger feel"
|
||||
that is difficult to replicate in-part. The player is based on a
|
||||
highly modified version of the Modplug engine, with a number of
|
||||
bugfixes and changes to improve IT playback.
|
||||
|
||||
%prep
|
||||
%setup -qn schismtracker
|
||||
|
||||
%build
|
||||
if [ ! -e configure ]; then
|
||||
autoreconf -fi
|
||||
fi
|
||||
%configure
|
||||
make %{?_smp_mflags}
|
||||
|
||||
%install
|
||||
make DESTDIR=$RPM_BUILD_ROOT install
|
||||
# install icons
|
||||
for size in 16 22 24 32 36 48 64 72 96 128 192; do
|
||||
mkdir -p $RPM_BUILD_ROOT%{_datadir}/icons/hicolor/${size}x${size}/apps
|
||||
cp icons/schism-icon-$size.png $RPM_BUILD_ROOT%{_datadir}/icons/hicolor/${size}x${size}/apps/schism.png
|
||||
done
|
||||
mkdir -p $RPM_BUILD_ROOT%{_datadir}/icons/hicolor/scalable/apps
|
||||
cp icons/schism-icon.svg $RPM_BUILD_ROOT%{_datadir}/icons/hicolor/scalable/apps/schism.svg
|
||||
# install desktop file
|
||||
%suse_update_desktop_file -i %{name} AudioVideo Sequencer
|
||||
|
||||
%clean
|
||||
rm -rf $RPM_BUILD_ROOT
|
||||
|
||||
%files
|
||||
%defattr(-,root,root)
|
||||
%doc AUTHORS COPYING NEWS README
|
||||
%{_bindir}/schismtracker
|
||||
%{_datadir}/icons/hicolor
|
||||
%{_datadir}/applications/schism.desktop
|
||||
|
||||
%changelog
|
3
schismtracker-0.20100224.tar.bz2
Normal file
3
schismtracker-0.20100224.tar.bz2
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:1e75dc05ac6613478a8913abf9b4b8c13b4c9e43f3ed13506b4ff20e03c5fd6a
|
||||
size 923132
|
Loading…
Reference in New Issue
Block a user