rename all applets sources to app_*.c
parent
72be813930
commit
60b87557e5
10
src/Makefile
10
src/Makefile
|
@ -23,9 +23,13 @@ install-LUA_LIB-y := $(INSTALLDIR) $(DESTDIR)$(LUA_LIBDIR) && \
|
||||||
endif
|
endif
|
||||||
|
|
||||||
progs-y += apk
|
progs-y += apk
|
||||||
apk-objs := apk.o add.o del.o fix.o update.o info.o list.o \
|
apk-objs := apk.o \
|
||||||
search.o upgrade.o cache.o ver.o index.o fetch.o \
|
app_add.o app_del.o app_fix.o app_update.o app_upgrade.o \
|
||||||
audit.o verify.o dot.o policy.o stats.o manifest.o
|
app_info.o app_list.o app_search.o app_manifest.o \
|
||||||
|
app_policy.o app_stats.o \
|
||||||
|
app_cache.o app_version.o \
|
||||||
|
app_index.o app_fetch.o app_verify.o app_dot.o \
|
||||||
|
app_audit.o
|
||||||
|
|
||||||
libapk.so-objs := common.o database.o package.o archive.o \
|
libapk.so-objs := common.o database.o package.o archive.o \
|
||||||
version.o io.o url.o gunzip.o blob.o hash.o print.o \
|
version.o io.o url.o gunzip.o blob.o hash.o print.o \
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
/* add.c - Alpine Package Keeper (APK)
|
/* app_add.c - Alpine Package Keeper (APK)
|
||||||
*
|
*
|
||||||
* Copyright (C) 2005-2008 Natanael Copa <n@tanael.org>
|
* Copyright (C) 2005-2008 Natanael Copa <n@tanael.org>
|
||||||
* Copyright (C) 2008-2011 Timo Teräs <timo.teras@iki.fi>
|
* Copyright (C) 2008-2011 Timo Teräs <timo.teras@iki.fi>
|
|
@ -1,4 +1,4 @@
|
||||||
/* audit.c - Alpine Package Keeper (APK)
|
/* app_audit.c - Alpine Package Keeper (APK)
|
||||||
*
|
*
|
||||||
* Copyright (C) 2005-2008 Natanael Copa <n@tanael.org>
|
* Copyright (C) 2005-2008 Natanael Copa <n@tanael.org>
|
||||||
* Copyright (C) 2008-2011 Timo Teräs <timo.teras@iki.fi>
|
* Copyright (C) 2008-2011 Timo Teräs <timo.teras@iki.fi>
|
|
@ -1,4 +1,4 @@
|
||||||
/* cache.c - Alpine Package Keeper (APK)
|
/* app_cache.c - Alpine Package Keeper (APK)
|
||||||
*
|
*
|
||||||
* Copyright (C) 2005-2008 Natanael Copa <n@tanael.org>
|
* Copyright (C) 2005-2008 Natanael Copa <n@tanael.org>
|
||||||
* Copyright (C) 2008-2011 Timo Teräs <timo.teras@iki.fi>
|
* Copyright (C) 2008-2011 Timo Teräs <timo.teras@iki.fi>
|
|
@ -1,4 +1,4 @@
|
||||||
/* del.c - Alpine Package Keeper (APK)
|
/* app_del.c - Alpine Package Keeper (APK)
|
||||||
*
|
*
|
||||||
* Copyright (C) 2005-2008 Natanael Copa <n@tanael.org>
|
* Copyright (C) 2005-2008 Natanael Copa <n@tanael.org>
|
||||||
* Copyright (C) 2008-2011 Timo Teräs <timo.teras@iki.fi>
|
* Copyright (C) 2008-2011 Timo Teräs <timo.teras@iki.fi>
|
|
@ -1,4 +1,4 @@
|
||||||
/* dot.c - Alpine Package Keeper (APK)
|
/* app_dot.c - Alpine Package Keeper (APK)
|
||||||
*
|
*
|
||||||
* Copyright (C) 2008-2011 Timo Teräs <timo.teras@iki.fi>
|
* Copyright (C) 2008-2011 Timo Teräs <timo.teras@iki.fi>
|
||||||
* All rights reserved.
|
* All rights reserved.
|
|
@ -1,4 +1,4 @@
|
||||||
/* fetch.c - Alpine Package Keeper (APK)
|
/* app_fetch.c - Alpine Package Keeper (APK)
|
||||||
*
|
*
|
||||||
* Copyright (C) 2005-2008 Natanael Copa <n@tanael.org>
|
* Copyright (C) 2005-2008 Natanael Copa <n@tanael.org>
|
||||||
* Copyright (C) 2008-2011 Timo Teräs <timo.teras@iki.fi>
|
* Copyright (C) 2008-2011 Timo Teräs <timo.teras@iki.fi>
|
|
@ -1,4 +1,4 @@
|
||||||
/* fix.c - Alpine Package Keeper (APK)
|
/* app_fix.c - Alpine Package Keeper (APK)
|
||||||
*
|
*
|
||||||
* Copyright (C) 2005-2008 Natanael Copa <n@tanael.org>
|
* Copyright (C) 2005-2008 Natanael Copa <n@tanael.org>
|
||||||
* Copyright (C) 2008-2011 Timo Teräs <timo.teras@iki.fi>
|
* Copyright (C) 2008-2011 Timo Teräs <timo.teras@iki.fi>
|
|
@ -1,4 +1,4 @@
|
||||||
/* index.c - Alpine Package Keeper (APK)
|
/* app_index.c - Alpine Package Keeper (APK)
|
||||||
*
|
*
|
||||||
* Copyright (C) 2005-2008 Natanael Copa <n@tanael.org>
|
* Copyright (C) 2005-2008 Natanael Copa <n@tanael.org>
|
||||||
* Copyright (C) 2008-2011 Timo Teräs <timo.teras@iki.fi>
|
* Copyright (C) 2008-2011 Timo Teräs <timo.teras@iki.fi>
|
|
@ -1,4 +1,4 @@
|
||||||
/* info.c - Alpine Package Keeper (APK)
|
/* app_info.c - Alpine Package Keeper (APK)
|
||||||
*
|
*
|
||||||
* Copyright (C) 2005-2009 Natanael Copa <n@tanael.org>
|
* Copyright (C) 2005-2009 Natanael Copa <n@tanael.org>
|
||||||
* Copyright (C) 2008-2011 Timo Teräs <timo.teras@iki.fi>
|
* Copyright (C) 2008-2011 Timo Teräs <timo.teras@iki.fi>
|
|
@ -1,4 +1,4 @@
|
||||||
/* list.c - Alpine Package Keeper (APK)
|
/* app_list.c - Alpine Package Keeper (APK)
|
||||||
*
|
*
|
||||||
* Copyright (C) 2005-2009 Natanael Copa <n@tanael.org>
|
* Copyright (C) 2005-2009 Natanael Copa <n@tanael.org>
|
||||||
* Copyright (C) 2008-2011 Timo Teräs <timo.teras@iki.fi>
|
* Copyright (C) 2008-2011 Timo Teräs <timo.teras@iki.fi>
|
|
@ -1,4 +1,4 @@
|
||||||
/* manifest.c - Alpine Package Keeper (APK)
|
/* app_manifest.c - Alpine Package Keeper (APK)
|
||||||
*
|
*
|
||||||
* Copyright (C) 2005-2017 Natanael Copa <n@tanael.org>
|
* Copyright (C) 2005-2017 Natanael Copa <n@tanael.org>
|
||||||
* Copyright (C) 2008-2017 Timo Teräs <timo.teras@iki.fi>
|
* Copyright (C) 2008-2017 Timo Teräs <timo.teras@iki.fi>
|
|
@ -1,4 +1,4 @@
|
||||||
/* policy.c - Alpine Package Keeper (APK)
|
/* app_policy.c - Alpine Package Keeper (APK)
|
||||||
*
|
*
|
||||||
* Copyright (C) 2013 Timo Teräs <timo.teras@iki.fi>
|
* Copyright (C) 2013 Timo Teräs <timo.teras@iki.fi>
|
||||||
* All rights reserved.
|
* All rights reserved.
|
|
@ -1,4 +1,4 @@
|
||||||
/* search.c - Alpine Package Keeper (APK)
|
/* app_search.c - Alpine Package Keeper (APK)
|
||||||
*
|
*
|
||||||
* Copyright (C) 2005-2009 Natanael Copa <n@tanael.org>
|
* Copyright (C) 2005-2009 Natanael Copa <n@tanael.org>
|
||||||
* Copyright (C) 2008-2011 Timo Teräs <timo.teras@iki.fi>
|
* Copyright (C) 2008-2011 Timo Teräs <timo.teras@iki.fi>
|
|
@ -1,4 +1,4 @@
|
||||||
/* stats.c - Alpine Package Keeper (APK)
|
/* app_stats.c - Alpine Package Keeper (APK)
|
||||||
*
|
*
|
||||||
* Copyright (C) 2013 Timo Teräs <timo.teras@iki.fi>
|
* Copyright (C) 2013 Timo Teräs <timo.teras@iki.fi>
|
||||||
* All rights reserved.
|
* All rights reserved.
|
|
@ -1,4 +1,4 @@
|
||||||
/* update.c - Alpine Package Keeper (APK)
|
/* app_update.c - Alpine Package Keeper (APK)
|
||||||
*
|
*
|
||||||
* Copyright (C) 2005-2008 Natanael Copa <n@tanael.org>
|
* Copyright (C) 2005-2008 Natanael Copa <n@tanael.org>
|
||||||
* Copyright (C) 2008-2011 Timo Teräs <timo.teras@iki.fi>
|
* Copyright (C) 2008-2011 Timo Teräs <timo.teras@iki.fi>
|
|
@ -1,4 +1,4 @@
|
||||||
/* upgrade.c - Alpine Package Keeper (APK)
|
/* app_upgrade.c - Alpine Package Keeper (APK)
|
||||||
*
|
*
|
||||||
* Copyright (C) 2005-2008 Natanael Copa <n@tanael.org>
|
* Copyright (C) 2005-2008 Natanael Copa <n@tanael.org>
|
||||||
* Copyright (C) 2008-2011 Timo Teräs <timo.teras@iki.fi>
|
* Copyright (C) 2008-2011 Timo Teräs <timo.teras@iki.fi>
|
|
@ -1,4 +1,4 @@
|
||||||
/* verify.c - Alpine Package Keeper (APK)
|
/* app_verify.c - Alpine Package Keeper (APK)
|
||||||
*
|
*
|
||||||
* Copyright (C) 2008-2011 Timo Teräs <timo.teras@iki.fi>
|
* Copyright (C) 2008-2011 Timo Teräs <timo.teras@iki.fi>
|
||||||
* All rights reserved.
|
* All rights reserved.
|
|
@ -1,4 +1,4 @@
|
||||||
/* ver.c - Alpine Package Keeper (APK)
|
/* app_version.c - Alpine Package Keeper (APK)
|
||||||
*
|
*
|
||||||
* Copyright (C) 2005-2008 Natanael Copa <n@tanael.org>
|
* Copyright (C) 2005-2008 Natanael Copa <n@tanael.org>
|
||||||
* Copyright (C) 2008-2011 Timo Teräs <timo.teras@iki.fi>
|
* Copyright (C) 2008-2011 Timo Teräs <timo.teras@iki.fi>
|
Loading…
Reference in New Issue