Skip to content

Commit 33fce7b

Browse files
committed
version 0.4 2007.05.04
0 parents  commit 33fce7b

7 files changed

+983
-0
lines changed

COPYING

+340
Large diffs are not rendered by default.

COPYRIGHT

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
acdcontrol - Apple Cinema Display backlight control utility
2+
3+
Copyright (C) 2004-2007 Pavel Gurevich ([email protected])
4+
5+
This program is free software; you can redistribute it and/or modify
6+
it under the terms of the GNU General Public License as published by
7+
the Free Software Foundation; either version 2 of the License, or
8+
(at your option) any later version.
9+
10+
This program is distributed in the hope that it will be useful,
11+
but WITHOUT ANY WARRANTY; without even the implied warranty of
12+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13+
GNU General Public License for more details.
14+
15+
You should have received a copy of the GNU General Public License
16+
along with this program; if not, write to the Free Software
17+
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA

Makefile

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
RELEASE_FILES=acdcontrol.cpp acdcontrol.init acdcontrol.sysconfig COPYING COPYRIGHT Makefile VERSION
2+
VERSION=$(shell cat VERSION)
3+
VERNAME=acdcontrol-$(VERSION)
4+
DIRNAME=/tmp/$(VERNAME)
5+
6+
acdcontrol: acdcontrol.cpp
7+
8+
release:
9+
mkdir -p $(DIRNAME)
10+
rm -rf $(DIRNAME)/*
11+
cp $(RELEASE_FILES) $(DIRNAME)
12+
tar cvfz $(VERNAME).tar.gz -C /tmp $(VERNAME)
13+
14+
upload:
15+
curl -T $(VERNAME).tar.gz ftp://[email protected]/incoming/

VERSION

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
0.4

0 commit comments

Comments
 (0)