]> git.sesse.net Git - vlc/commitdiff
ipkg script for Familiar Linux 0.5 & bug fix in debian/rules.
authorChristophe Massiot <massiot@videolan.org>
Mon, 12 Nov 2001 11:30:44 +0000 (11:30 +0000)
committerChristophe Massiot <massiot@videolan.org>
Mon, 12 Nov 2001 11:30:44 +0000 (11:30 +0000)
debian/rules
ipkg/control [new file with mode: 0644]
ipkg/rules [new file with mode: 0755]

index 7c9f8e30f16dcfabe1085a999dfd3e9f8ae54136..cb28c4fbaf37b4445ccb63db645ea78b172604b7 100755 (executable)
@@ -9,7 +9,7 @@
 export DH_COMPAT=3
 
 # Compilation options
-export CONFIG_FLAGS="--enable-release --prefix=/usr --enable-gnome --enable-gtk --enable-fb --with-ggi --with-sdl --enable-esd --enable-qt"
+export CONFIG_FLAGS="--enable-release --prefix=/usr --enable-gnome --enable-gtk --enable-fb --with-ggi --enable-sdl --enable-esd --enable-qt"
 export LIBDVDCSS_FLAGS="--with-dvdcss=local-shared"
 export VIDDIR="usr/share/videolan"
 export PIXDIR="usr/share/pixmaps"
diff --git a/ipkg/control b/ipkg/control
new file mode 100644 (file)
index 0000000..4aa1a64
--- /dev/null
@@ -0,0 +1,8 @@
+Package: vlc
+Section: graphics
+Priority: optional
+Version: 0.2.90-fam0
+Architecture: arm
+Maintainer: Christophe Massiot <massiot@via.ecp.fr>
+Depends: libc6, task-x
+Description: streaming-capable MPEG decoder
diff --git a/ipkg/rules b/ipkg/rules
new file mode 100755 (executable)
index 0000000..d4c0595
--- /dev/null
@@ -0,0 +1,37 @@
+#!/usr/bin/make -f
+# debian/rules for the VideoLAN Client - uses debhelper.
+# based on Joey Hess's one.
+# Kludged for ipkg
+
+# Compilation options
+export CC=arm-linux-gcc
+export LD=arm-linux-ld
+export STRIP=arm-linux-strip
+export CONFIG_FLAGS="--enable-release --prefix=/usr --disable-gtk --enable-fb --enable-sdl --disable-xvideo --disable-plugins --with-tuning=strongarm1100 --x-includes=/skiff/local/arm-linux/include --x-libraries=/skiff/local/arm-linux/lib/X11 --with-sdl-config-path=/skiff/local/bin"
+export LIBDVDCSS_FLAGS="--with-dvdcss=local-static"
+export VIDDIR="usr/share/videolan"
+export PIXDIR="usr/share/pixmaps"
+export DESTDIR=/tmp/vlc
+
+build: build-stamp
+build-stamp:
+       ./configure --mandir=$${prefix}/share/man \
+               --infodir=$${prefix}/share/info \
+               $(shell echo $(CONFIG_FLAGS)) $(shell echo $(LIBDVDCSS_FLAGS))
+
+       $(MAKE)
+
+       touch build-stamp
+
+clean:
+       rm -f build-stamp
+
+       -$(MAKE) distclean
+
+install: build
+       mkdir -p $(DESTDIR)/usr/bin
+       $(STRIP) vlc
+       cp vlc $(DESTDIR)/usr/bin
+
+.PHONY: build clean install
+