The following packages will be installed: zita-resampler Fetching README... 0%100%100%100%100%100%Done Fetching slack-desc... 0%100%100%100%100%100%Done Fetching zita-resampler.SlackBuild... 0%100%100%100%100%100%Done Fetching zita-resampler.info... 0%100%100%100%100%100%Done zita-resampler-1.6.2/ zita-resampler-1.6.2/apps/ zita-resampler-1.6.2/apps/dither.cc zita-resampler-1.6.2/apps/audiofile.cc zita-resampler-1.6.2/apps/zretune.1 zita-resampler-1.6.2/apps/zresample.cc zita-resampler-1.6.2/apps/audiofile.h zita-resampler-1.6.2/apps/zretune.cc zita-resampler-1.6.2/apps/zresample.1 zita-resampler-1.6.2/apps/dither.h zita-resampler-1.6.2/apps/Makefile zita-resampler-1.6.2/README zita-resampler-1.6.2/source/ zita-resampler-1.6.2/source/vresampler.cc zita-resampler-1.6.2/source/zita-resampler/ zita-resampler-1.6.2/source/zita-resampler/resampler-table.h zita-resampler-1.6.2/source/zita-resampler/vresampler.h zita-resampler-1.6.2/source/zita-resampler/resampler.h zita-resampler-1.6.2/source/zita-resampler/cresampler.h zita-resampler-1.6.2/source/cresampler.cc zita-resampler-1.6.2/source/resampler-table.cc zita-resampler-1.6.2/source/resampler.cc zita-resampler-1.6.2/source/Makefile zita-resampler-1.6.2/docs/ zita-resampler-1.6.2/docs/filt2.png zita-resampler-1.6.2/docs/zita-1kHz.png zita-resampler-1.6.2/docs/filt1.png zita-resampler-1.6.2/docs/src-1kHz.png zita-resampler-1.6.2/docs/inpdist.png zita-resampler-1.6.2/docs/zitadocs.css zita-resampler-1.6.2/docs/resampler.html zita-resampler-1.6.2/COPYING zita-resampler-1.6.2/AUTHORS # ---------------------------------------------------------------------------- # # Copyright (C) 2006-2018 Fons Adriaensen # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . # # ---------------------------------------------------------------------------- PREFIX ?= /usr/local BINDIR ?= $(PREFIX)/bin MANDIR ?= /usr/share/man/man1 VERSION = 1.6.0 CPPFLAGS += -MMD -MP -DVERSION=\"$(VERSION)\" CXXFLAGS += -O2 -ffast-math -Wall CXXFLAGS += -march=native all: zresample zretune zresample.1.gz zretune.1.gz ZRESAMPLE_O = zresample.o audiofile.o dither.o zresample: LDLIBS += -lzita-resampler -lsndfile -lrt zresample: $(ZRESAMPLE_O) $(CXX) $(LDFLAGS) -o $@ $(ZRESAMPLE_O) $(LDLIBS) $(ZRESAMPLE_O): -include $(ZRESAMPLE_O:%.o=%.d) ZRETUNE_O = zretune.o audiofile.o dither.o zretune: LDLIBS += -lzita-resampler -lsndfile -lrt zretune: $(ZRETUNE_O) $(CXX) $(LDFLAGS) -o $@ $(ZRETUNE_O) $(LDLIBS) $(ZRETUNE_O): -include $(ZRETUNE_O:%.o=%.d) zresample.1.gz: zresample.1 gzip -c zresample.1 > zresample.1.gz zretune.1.gz: zretune.1 gzip -c zretune.1 > zretune.1.gz install: all install -d $(DESTDIR)$(BINDIR) install -d $(MANDIR) install -m 755 zresample $(DESTDIR)$(BINDIR) install -m 755 zretune $(DESTDIR)$(BINDIR) install -m 644 zresample.1.gz $(DESTDIR)$(MANDIR) install -m 644 zretune.1.gz $(DESTDIR)$(MANDIR) uninstall: /bin/rm -f $(DESTDIR)$(BINDIR)/zresample /bin/rm -f $(DESTDIR)$(BINDIR)/zretune /bin/rm -f $(MANDIR)/zresample.1.gz /bin/rm -f $(MANDIR)/zretune.1.gz clean: /bin/rm -f *~ *.o *.a *.d *.so *.gz zresample zretune make: Entering directory '/usr/src/slapt-src/libraries/zita-resampler/zita-resampler-1.6.2/source' g++ -Wall -fPIC -O2 -ffast-math -I. -D_REENTRANT -D_POSIX_PTHREAD_SEMANTICS -c -o resampler.o resampler.cc g++ -Wall -fPIC -O2 -ffast-math -I. -D_REENTRANT -D_POSIX_PTHREAD_SEMANTICS -c -o vresampler.o vresampler.cc g++ -Wall -fPIC -O2 -ffast-math -I. -D_REENTRANT -D_POSIX_PTHREAD_SEMANTICS -c -o resampler-table.o resampler-table.cc g++ -Wall -fPIC -O2 -ffast-math -I. -D_REENTRANT -D_POSIX_PTHREAD_SEMANTICS -c -o cresampler.o cresampler.cc g++ -shared -Wl,-soname,libzita-resampler.so.1 -o libzita-resampler.so.1.6.2 resampler.o vresampler.o resampler-table.o cresampler.o make: Leaving directory '/usr/src/slapt-src/libraries/zita-resampler/zita-resampler-1.6.2/source' 'source/libzita-resampler.so' -> 'libzita-resampler.so.1.6.2' make: Entering directory '/usr/src/slapt-src/libraries/zita-resampler/zita-resampler-1.6.2/apps' g++ -O2 -march=i586 -mtune=i686 -I../source -O2 -ffast-math -Wall -march=native -MMD -MP -DVERSION=\"1.6.0\" -c -o zresample.o zresample.cc g++ -O2 -march=i586 -mtune=i686 -I../source -O2 -ffast-math -Wall -march=native -MMD -MP -DVERSION=\"1.6.0\" -c -o audiofile.o audiofile.cc g++ -O2 -march=i586 -mtune=i686 -I../source -O2 -ffast-math -Wall -march=native -MMD -MP -DVERSION=\"1.6.0\" -c -o dither.o dither.cc g++ -L../source -o zresample zresample.o audiofile.o dither.o -lzita-resampler -lsndfile -lrt g++ -O2 -march=i586 -mtune=i686 -I../source -O2 -ffast-math -Wall -march=native -MMD -MP -DVERSION=\"1.6.0\" -c -o zretune.o zretune.cc g++ -L../source -o zretune zretune.o audiofile.o dither.o -lzita-resampler -lsndfile -lrt gzip -c zresample.1 > zresample.1.gz gzip -c zretune.1 > zretune.1.gz make: Leaving directory '/usr/src/slapt-src/libraries/zita-resampler/zita-resampler-1.6.2/apps' make: Entering directory '/usr/src/slapt-src/libraries/zita-resampler/zita-resampler-1.6.2/source' install -d /usr/src/slapt-src/libraries/zita-resampler/package-zita-resampler/usr/include/zita-resampler install -d /usr/src/slapt-src/libraries/zita-resampler/package-zita-resampler/usr/lib install -m 644 zita-resampler/resampler.h zita-resampler/resampler-table.h zita-resampler/vresampler.h zita-resampler/cresampler.h /usr/src/slapt-src/libraries/zita-resampler/package-zita-resampler/usr/include/zita-resampler install -m 755 libzita-resampler.so.1.6.2 /usr/src/slapt-src/libraries/zita-resampler/package-zita-resampler/usr/lib ldconfig -N /usr/src/slapt-src/libraries/zita-resampler/package-zita-resampler//usr/lib ln -sf libzita-resampler.so.1.6.2 /usr/src/slapt-src/libraries/zita-resampler/package-zita-resampler/usr/lib/libzita-resampler.so make: Leaving directory '/usr/src/slapt-src/libraries/zita-resampler/zita-resampler-1.6.2/source' Slackware package maker, version 3.14159265. Searching for symbolic links: usr/lib/libzita-resampler.so libzita-resampler.so.1.6.2 usr/lib/libzita-resampler.so.1 libzita-resampler.so.1.6.2 Making symbolic link creation script: ( cd usr/lib ; rm -rf libzita-resampler.so ) ( cd usr/lib ; ln -sf libzita-resampler.so.1.6.2 libzita-resampler.so ) ( cd usr/lib ; rm -rf libzita-resampler.so.1 ) ( cd usr/lib ; ln -sf libzita-resampler.so.1.6.2 libzita-resampler.so.1 ) It is recommended that you make these lines your new installation script. Would you like to make this stuff the install script for this package and remove the symbolic links ([y]es, [n]o)? y Removing symbolic links: removed './usr/lib/libzita-resampler.so.1' removed './usr/lib/libzita-resampler.so' Creating your new ./install/doinst.sh... This next step is optional - you can set the directories in your package to some sane permissions. If any of the directories in your package have special permissions, then DO NOT reset them here! Would you like to reset all directory permissions to 755 (drwxr-xr-x) and directory ownerships to root.root ([y]es, [n]o)? n Creating Slackware package: /usr/src/slapt-src/libraries/zita-resampler/zita-resampler-1.6.2-i586-1salix15.0.txz ./ install/ install/doinst.sh install/slack-desc usr/ usr/doc/ usr/doc/zita-resampler-1.6.2/ usr/doc/zita-resampler-1.6.2/AUTHORS usr/doc/zita-resampler-1.6.2/COPYING usr/doc/zita-resampler-1.6.2/README usr/doc/zita-resampler-1.6.2/zita-resampler.SlackBuild usr/include/ usr/include/zita-resampler/ usr/include/zita-resampler/cresampler.h usr/include/zita-resampler/resampler-table.h usr/include/zita-resampler/resampler.h usr/include/zita-resampler/vresampler.h usr/lib/ usr/lib/libzita-resampler.so.1.6.2 Slackware package /usr/src/slapt-src/libraries/zita-resampler/zita-resampler-1.6.2-i586-1salix15.0.txz created. Installing package zita-resampler-1.6.2-i586-1salix15.0... | zita-resampler (C++ library for resampling audio signals) | | It is designed to be used within a real-time processing context, | to be fast, and to provide high-quality sample rate conversion. | | | | | | | | |