diff --git a/Makefile.am b/Makefile.am index 508c40228e..c8ed0ecfc7 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1,6 +1,6 @@ bin_PROGRAMS = steamcompmgr -steamcompmgr_SOURCES = src/steamcompmgr.c +steamcompmgr_SOURCES = src/steamcompmgr.c src/glext.h AM_CFLAGS = $(DEPS_CFLAGS) AM_LIBS = $(DEPS_LIBS) diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000000..15b400f793 --- /dev/null +++ b/debian/changelog @@ -0,0 +1,5 @@ +steamos-compositor (1.0) alchemist; urgency=low + + * Initial release. + + -- John Vert Fri, 18 Oct 2013 16:03:00 -0700 diff --git a/debian/compat b/debian/compat new file mode 100644 index 0000000000..45a4fb75db --- /dev/null +++ b/debian/compat @@ -0,0 +1 @@ +8 diff --git a/debian/control b/debian/control new file mode 100644 index 0000000000..9861589dae --- /dev/null +++ b/debian/control @@ -0,0 +1,12 @@ +Source: steamos-compositor +Maintainer: Pierre-Loup Griffais +Section: misc +Priority: optional +Standards-Version: 3.9.2 +Build-Depends: debhelper (>= 8) + +Package: steamos-compositor +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends} +Description: SteamOS Compositor + Provides graphics compositor services for the full-screen environment of SteamOS diff --git a/debian/copyright b/debian/copyright new file mode 100644 index 0000000000..e69de29bb2 diff --git a/debian/rules b/debian/rules new file mode 100644 index 0000000000..cbe925d758 --- /dev/null +++ b/debian/rules @@ -0,0 +1,3 @@ +#!/usr/bin/make -f +%: + dh $@ diff --git a/debian/source/format b/debian/source/format new file mode 100644 index 0000000000..163aaf8d82 --- /dev/null +++ b/debian/source/format @@ -0,0 +1 @@ +3.0 (quilt) diff --git a/src/build.sh b/src/build.sh deleted file mode 100755 index ab654fbb8d..0000000000 --- a/src/build.sh +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/sh -gcc -m32 -std=gnu99 -g3 steamcompmgr.c -o steamcompmgr -L /valve/steam-runtime/runtime-release/i386/usr/lib/i386-linux-gnu/ -L /usr/lib32/nvidia-319/ -lGL -lXrender -lXcomposite -lXfixes -lXdamage -lXxf86vm