2010-02-11 02:10:30 +02:00
|
|
|
#
|
|
|
|
# Copyright (C) 2010 OpenWrt.org
|
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
|
|
|
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
|
|
|
PKG_NAME:=dgclock
|
|
|
|
PKG_VERSION:=091222
|
|
|
|
PKG_RELEASE:=1
|
|
|
|
|
|
|
|
PKG_SOURCE:=dgclock$(PKG_VERSION).zip
|
|
|
|
PKG_SOURCE_URL:=http://clogging.web.fc2.com/dingoo/
|
|
|
|
PKG_MD5SUM:=2a5143b7a3db464488c917387445e092
|
|
|
|
PKG_BUILD_DIR:=$(BUILD_DIR)/dgclock-$(PKG_VERSION)
|
|
|
|
|
|
|
|
UNPACK_CMD=unzip -d $(1) $(DL_DIR)/$(PKG_SOURCE)
|
|
|
|
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
2011-02-06 20:56:17 +02:00
|
|
|
include $(INCLUDE_DIR)/nls.mk
|
2010-02-11 02:10:30 +02:00
|
|
|
|
2010-02-16 21:33:25 +02:00
|
|
|
TARGET_CFLAGS += \
|
|
|
|
-I$(STAGING_DIR)/usr/include/SDL
|
2010-02-11 02:10:30 +02:00
|
|
|
|
2010-02-16 21:33:25 +02:00
|
|
|
TARGET_LDFLAGS += \
|
2010-02-11 02:10:30 +02:00
|
|
|
-Wl,-rpath-link=$(STAGING_DIR)/usr/lib \
|
2012-03-28 22:20:46 +03:00
|
|
|
-lSDL -lSDL_ttf -lm
|
2010-02-11 02:10:30 +02:00
|
|
|
|
|
|
|
define Package/dgclock
|
|
|
|
SECTION:=xorg-apps
|
|
|
|
CATEGORY:=Xorg
|
|
|
|
TITLE:=dgclock - sdl based date and time
|
|
|
|
URL:=http://clogging.web.fc2.com/dingoo/
|
2010-02-22 02:07:05 +02:00
|
|
|
DEPENDS:=+libsdl +libsdl-image +libsdl-ttf +dejavu-fonts-ttf
|
2010-02-11 02:10:30 +02:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/dgclock/description
|
|
|
|
Clock and date in sdl
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Build/Compile
|
2010-03-10 15:39:01 +02:00
|
|
|
( cd $(PKG_BUILD_DIR) ; \
|
|
|
|
mkdir bin obj ; \
|
|
|
|
$(TARGET_CC) -c $(TARGET_CFLAGS) -o obj/text.o src/text.c ; \
|
|
|
|
$(TARGET_CC) -c $(TARGET_CFLAGS) -o obj/settime.o src/settime.c ; \
|
|
|
|
$(TARGET_CC) -c $(TARGET_CFLAGS) -o obj/main.o src/main.c ; \
|
|
|
|
$(TARGET_CC) -o bin/dgclock obj/text.o obj/main.o obj/settime.o $(TARGET_LDFLAGS) ; \
|
2010-02-11 02:10:30 +02:00
|
|
|
)
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/dgclock/install
|
|
|
|
$(INSTALL_DIR) \
|
2010-02-16 21:33:25 +02:00
|
|
|
$(1)/usr/bin \
|
|
|
|
$(1)/usr/share/icons \
|
|
|
|
$(1)/usr/share/applications
|
2010-02-11 02:10:30 +02:00
|
|
|
|
|
|
|
$(INSTALL_BIN) \
|
2010-03-10 15:39:01 +02:00
|
|
|
$(PKG_BUILD_DIR)/bin/dgclock \
|
2010-02-11 02:10:30 +02:00
|
|
|
$(1)/usr/bin/
|
2010-02-16 21:33:25 +02:00
|
|
|
|
|
|
|
$(INSTALL_DATA) \
|
|
|
|
$(PKG_BUILD_DIR)/dgclock/dgclock.png \
|
|
|
|
$(1)/usr/share/icons/
|
|
|
|
|
|
|
|
$(INSTALL_DATA) \
|
2010-02-19 08:49:02 +02:00
|
|
|
./files/dgclock.desktop \
|
2010-02-16 21:33:25 +02:00
|
|
|
$(1)/usr/share/applications/
|
2010-02-11 02:10:30 +02:00
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call BuildPackage,dgclock))
|