├── .create_pkg.sh ├── AIRPLAY.pm ├── Plugin.pm ├── README.md ├── ShairTunes2.zip ├── Utils.pm ├── helperBinaries ├── shairport_helper-arm-gnueabi-thread-multi ├── shairport_helper-arm-gnueabihf-multi-64int ├── shairport_helper-i386-linux ├── shairport_helper-i386-osx ├── shairport_helper-i86pc-solaris ├── shairport_helper-x64-linux └── shairport_helper-x64-osx ├── install.xml ├── public.xml ├── shairport_helper └── src │ ├── INSTALL.md │ ├── LICENSE │ ├── Makefile │ ├── Makefile.Darwin │ ├── Makefile.SunOS │ ├── Makefile.armv5 │ ├── Makefile.default │ ├── README.md │ ├── alac.c │ ├── alac.h │ ├── hairtunes.c │ ├── hairtunes.h │ ├── http.c │ └── http.h └── strings.txt /.create_pkg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disaster123/shairport2_plugin/HEAD/.create_pkg.sh -------------------------------------------------------------------------------- /AIRPLAY.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disaster123/shairport2_plugin/HEAD/AIRPLAY.pm -------------------------------------------------------------------------------- /Plugin.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disaster123/shairport2_plugin/HEAD/Plugin.pm -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disaster123/shairport2_plugin/HEAD/README.md -------------------------------------------------------------------------------- /ShairTunes2.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disaster123/shairport2_plugin/HEAD/ShairTunes2.zip -------------------------------------------------------------------------------- /Utils.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disaster123/shairport2_plugin/HEAD/Utils.pm -------------------------------------------------------------------------------- /helperBinaries/shairport_helper-arm-gnueabi-thread-multi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disaster123/shairport2_plugin/HEAD/helperBinaries/shairport_helper-arm-gnueabi-thread-multi -------------------------------------------------------------------------------- /helperBinaries/shairport_helper-arm-gnueabihf-multi-64int: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disaster123/shairport2_plugin/HEAD/helperBinaries/shairport_helper-arm-gnueabihf-multi-64int -------------------------------------------------------------------------------- /helperBinaries/shairport_helper-i386-linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disaster123/shairport2_plugin/HEAD/helperBinaries/shairport_helper-i386-linux -------------------------------------------------------------------------------- /helperBinaries/shairport_helper-i386-osx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disaster123/shairport2_plugin/HEAD/helperBinaries/shairport_helper-i386-osx -------------------------------------------------------------------------------- /helperBinaries/shairport_helper-i86pc-solaris: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disaster123/shairport2_plugin/HEAD/helperBinaries/shairport_helper-i86pc-solaris -------------------------------------------------------------------------------- /helperBinaries/shairport_helper-x64-linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disaster123/shairport2_plugin/HEAD/helperBinaries/shairport_helper-x64-linux -------------------------------------------------------------------------------- /helperBinaries/shairport_helper-x64-osx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disaster123/shairport2_plugin/HEAD/helperBinaries/shairport_helper-x64-osx -------------------------------------------------------------------------------- /install.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disaster123/shairport2_plugin/HEAD/install.xml -------------------------------------------------------------------------------- /public.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disaster123/shairport2_plugin/HEAD/public.xml -------------------------------------------------------------------------------- /shairport_helper/src/INSTALL.md: -------------------------------------------------------------------------------- 1 | Type `make` to build the packet decoder, `shairport_helper`. 2 | 3 | -------------------------------------------------------------------------------- /shairport_helper/src/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disaster123/shairport2_plugin/HEAD/shairport_helper/src/LICENSE -------------------------------------------------------------------------------- /shairport_helper/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disaster123/shairport2_plugin/HEAD/shairport_helper/src/Makefile -------------------------------------------------------------------------------- /shairport_helper/src/Makefile.Darwin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disaster123/shairport2_plugin/HEAD/shairport_helper/src/Makefile.Darwin -------------------------------------------------------------------------------- /shairport_helper/src/Makefile.SunOS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disaster123/shairport2_plugin/HEAD/shairport_helper/src/Makefile.SunOS -------------------------------------------------------------------------------- /shairport_helper/src/Makefile.armv5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disaster123/shairport2_plugin/HEAD/shairport_helper/src/Makefile.armv5 -------------------------------------------------------------------------------- /shairport_helper/src/Makefile.default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disaster123/shairport2_plugin/HEAD/shairport_helper/src/Makefile.default -------------------------------------------------------------------------------- /shairport_helper/src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disaster123/shairport2_plugin/HEAD/shairport_helper/src/README.md -------------------------------------------------------------------------------- /shairport_helper/src/alac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disaster123/shairport2_plugin/HEAD/shairport_helper/src/alac.c -------------------------------------------------------------------------------- /shairport_helper/src/alac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disaster123/shairport2_plugin/HEAD/shairport_helper/src/alac.h -------------------------------------------------------------------------------- /shairport_helper/src/hairtunes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disaster123/shairport2_plugin/HEAD/shairport_helper/src/hairtunes.c -------------------------------------------------------------------------------- /shairport_helper/src/hairtunes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disaster123/shairport2_plugin/HEAD/shairport_helper/src/hairtunes.h -------------------------------------------------------------------------------- /shairport_helper/src/http.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disaster123/shairport2_plugin/HEAD/shairport_helper/src/http.c -------------------------------------------------------------------------------- /shairport_helper/src/http.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disaster123/shairport2_plugin/HEAD/shairport_helper/src/http.h -------------------------------------------------------------------------------- /strings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disaster123/shairport2_plugin/HEAD/strings.txt --------------------------------------------------------------------------------